pg_log_error() already prints the program name, so we don't need to
print it again inside the message.
if (optind >= argc)
{
- pg_log_error("%s: no input directories specified", progname);
+ pg_log_error("no input directories specified");
pg_log_error_hint("Try \"%s --help\" for more information.", progname);
exit(1);
}
if (optind >= argc)
{
- pg_log_error("%s: no input files specified", progname);
+ pg_log_error("no input files specified");
pg_log_error_hint("Try \"%s --help\" for more information.", progname);
exit(1);
}