X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/e7eb3a2744aa45179daea235800753d3d1955338..4265e5d362914f3732b4035dcf67162e525e0142:/server/trackname.c diff --git a/server/trackname.c b/server/trackname.c index 116fed5..b661e0c 100644 --- a/server/trackname.c +++ b/server/trackname.c @@ -15,7 +15,9 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +/** @file server/trackname.c + * @brief Utility to run the track name calculator in isolation + */ #include "disorder-server.h" static const struct option options[] = { @@ -55,7 +57,7 @@ int main(int argc, char **argv) { } if(argc - optind < 3) fatal(0, "not enough arguments"); if(argc - optind > 3) fatal(0, "too many arguments"); - if(config_read(0)) fatal(0, "cannot read configuration"); + if(config_read(0, NULL)) fatal(0, "cannot read configuration"); s = trackname_part(argv[optind], argv[optind+1], argv[optind+2]); if(!s) fatal(0, "trackname_part returned NULL"); xprintf("%s\n", nullcheck(utf82mb(s)));