diff options
author | Kenny Levinsen <kl@kl.wtf> | 2022-05-23 22:03:38 +0200 |
---|---|---|
committer | Kenny Levinsen <kl@kl.wtf> | 2022-05-23 22:03:38 +0200 |
commit | a803ba0502cccf147eec7fbcacd11c5b8643c0e0 (patch) | |
tree | 2c79ae0702f23621600c2e8e23b691115403dc66 /seatd-launch | |
parent | 6888653a8dd7e0a3124f3b7f1e3356ae9dc782e9 (diff) |
seatd-launch: Avoid argv[0] in help text
Diffstat (limited to 'seatd-launch')
-rw-r--r-- | seatd-launch/seatd-launch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/seatd-launch/seatd-launch.c b/seatd-launch/seatd-launch.c index 329ccef..65d4f33 100644 --- a/seatd-launch/seatd-launch.c +++ b/seatd-launch/seatd-launch.c @@ -33,7 +33,7 @@ int main(int argc, char *argv[]) { printf("%s", usage); return 0; case '?': - fprintf(stderr, "Try '%s -h' for more information.\n", argv[0]); + fprintf(stderr, "Try 'seatd-launch -h' for more information.\n"); return 1; default: abort(); |