Fix printing of usage_error (#727)

This was missed in commit dda3e77
This commit is contained in:
Martijn van Beurden 2024-07-16 11:24:12 +02:00 committed by GitHub
parent 3468459d44
commit ef35c28dfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1201,12 +1201,12 @@ int usage_error(const char *message, ...)
va_start(args, message);
#ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
(void) vfprintf(stderr, message, args);
(void) flac_vfprintf(stderr, message, args);
#endif
va_end(args);
printf("Type \"flac\" for a usage summary or \"flac --help\" for all options\n");
flac_printf("Type \"flac\" for a usage summary or \"flac --help\" for all options\n");
}
return 1;