From 2914b66ec1aa4a719751c63719421a7d430ba1c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C5=8Dshin?= Date: Fri, 15 Dec 2023 21:33:06 +0000 Subject: [PATCH] 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. --- ape/loader.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ape/loader.c b/ape/loader.c index 87369cc42..1288494ef 100644 --- a/ape/loader.c +++ b/ape/loader.c @@ -936,13 +936,13 @@ __attribute__((__noreturn__)) static void ShowUsage(int os, int fd, int rc) { "\n" "USAGE\n" "\n" - " ape [FLAGS] PROG [ARGV1,ARGV2,...]\n" - " ape [FLAGS] - PROG [ARGV0,ARGV1,...]\n" + " ape -h\n" + " ape PROG [ARGV1,ARGV2,...]\n" + " ape - PROG [ARGV0,ARGV1,...]\n" "\n" "FLAGS\n" "\n" - " -h show this help\n" - " -f force loading of program (do not use execve)\n" + " -h show this help\n" "\n", 0l); Exit(rc, os);