fixed some missplaced flags

This commit is contained in:
anihilis 2026-02-16 20:20:24 +00:00
parent 90ce4d2338
commit 9c6b92372b
2 changed files with 3 additions and 3 deletions

BIN
cclock

Binary file not shown.

View file

@ -161,13 +161,13 @@ for (int i = 1; i < argc; i++) {
/* Help/Usage output */
show_help:
printf("Usage: %s [-12HqtCF]\n\n", argv[0]);
printf("Usage: %s [-HqTtCF]\n\n", argv[0]);
printf("Options:\n");
printf(" -12 Use 12-hour time format\n");
printf(" -t Use 12-hour time format\n");
printf(" -H Human-readable date (\"Tuesday 16, Feb\")\n");
printf(" -q Hide \"Press q to quit\" footer\n");
printf(" -t Hide temperature display\n");
printf(" -T Hide temperature display\n");
printf(" -C Force Celsius\n");
printf(" -F Force Fahrenheit\n");
printf(" -h,--help Show this help\n");