Refactor to remove code duplication in rotctl*.c

pull/1858/head
Daniele Forsi IU5HKX 2025-08-15 18:10:08 +02:00
rodzic 90ffcadfa5
commit a0fa2def82
3 zmienionych plików z 2 dodań i 4 usunięć

Wyświetl plik

@ -509,6 +509,4 @@ void usage()
); );
usage_rot(stdout); usage_rot(stdout);
printf("\nReport bugs to <hamlib-developer@lists.sourceforge.net>.\n");
} }

Wyświetl plik

@ -1572,6 +1572,8 @@ void usage_rot(FILE *fout)
"Commands and arguments read from standard input must be white space separated,\n" "Commands and arguments read from standard input must be white space separated,\n"
"comments are allowed, comments start with the # character and continue to the\n" "comments are allowed, comments start with the # character and continue to the\n"
"end of the line.\n"); "end of the line.\n");
fprintf(fout, "\nReport bugs to <hamlib-developer@lists.sourceforge.net>.\n");
} }

Wyświetl plik

@ -734,6 +734,4 @@ void usage()
portno); portno);
usage_rot(stdout); usage_rot(stdout);
printf("\nReport bugs to <hamlib-developer@lists.sourceforge.net>.\n");
} }