Remove -f from loader usage

-f was removed in 1.5. As there is now only one flag, a couple more
bytes can be shaved off as well.
This commit is contained in:
Jōshin 2023-12-15 21:33:06 +00:00
parent f94c11d978
commit 2914b66ec1
No known key found for this signature in database

View file

@ -936,13 +936,13 @@ __attribute__((__noreturn__)) static void ShowUsage(int os, int fd, int rc) {
"\n" "\n"
"USAGE\n" "USAGE\n"
"\n" "\n"
" ape [FLAGS] PROG [ARGV1,ARGV2,...]\n" " ape -h\n"
" ape [FLAGS] - PROG [ARGV0,ARGV1,...]\n" " ape PROG [ARGV1,ARGV2,...]\n"
" ape - PROG [ARGV0,ARGV1,...]\n"
"\n" "\n"
"FLAGS\n" "FLAGS\n"
"\n" "\n"
" -h show this help\n" " -h show this help\n"
" -f force loading of program (do not use execve)\n"
"\n", "\n",
0l); 0l);
Exit(rc, os); Exit(rc, os);