tt/ttauth: Update print_help()

Ensure callers use 2 parameters for the call
This commit is contained in:
Trung Lê
2025-04-01 10:06:56 +11:00
parent f0be964d6c
commit 509c722936
2 changed files with 2 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ NULL };
for (msg = prefixmsg; *msg; msg++) {
fprintf (stderr, "%s\n", *msg);
}
print_help (stderr, NULL, " "); /* match prefix indentation */
print_help (stderr, NULL);
fprintf (stderr, "\n");
for (msg = suffixmsg; *msg; msg++) {
fprintf (stderr, "%s\n", *msg);

View File

@@ -59,7 +59,7 @@ typedef int Bool;
extern char *ProgramName;
int process_command(), auth_initialize(), auth_finalize();
extern int print_help();
extern int print_help(FILE *fp, const char *cmd);
extern int verbose;
extern Bool ignore_locks;
extern Bool break_locks;