In metaflac/usage.c, add missing newlines in the --remove-all-tags-except description

This commit is contained in:
Jake Schmidt 2023-02-22 01:22:28 -05:00 committed by GitHub
parent 2d34861226
commit 0408d2518d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -128,9 +128,9 @@ int long_usage(const char *message, ...)
fprintf(out, "--remove-tag=NAME Remove all tags whose field name is 'NAME'.\n");
fprintf(out, "--remove-first-tag=NAME Remove first tag whose field name is 'NAME'.\n");
fprintf(out, "--remove-all-tags Remove all tags, leaving only the vendor string.\n");
fprintf(out, "--remove-all-tags-except=NAME1[=NAME2[=...]] Remove all tags, except the vendor");
fprintf(out, " string and the tag names specified. Tag names must be");
fprintf(out, " separated by an = character.");
fprintf(out, "--remove-all-tags-except=NAME1[=NAME2[=...]] Remove all tags, except the vendor\n");
fprintf(out, " string and the tag names specified. Tag names must be\n");
fprintf(out, " separated by an = character.\n");
fprintf(out, "--set-tag=FIELD Add a tag. The FIELD must comply with the Vorbis comment\n");
fprintf(out, " spec, of the form \"NAME=VALUE\". If there is currently\n");
fprintf(out, " no tag block, one will be created.\n");