From 11d4726f4c5a9289c4c54b90a1d6130404d2ce91 Mon Sep 17 00:00:00 2001 Message-Id: <11d4726f4c5a9289c4c54b90a1d6130404d2ce91.1715781520.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 15 Dec 2011 01:14:21 +0000 Subject: [PATCH] prlimit.c: Fix stupid typo in usage message. Organization: Straylight/Edgeware From: Mark Wooding I typed the wrong magic punctuation character, so the program name didn't appear. --- prlimit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prlimit.c b/prlimit.c index d7f94f9..a871cdd 100644 --- a/prlimit.c +++ b/prlimit.c @@ -182,7 +182,7 @@ static const struct limittab *findlimit(const char *p, size_t n) /*----- Help functions ----------------------------------------------------*/ static void usage(FILE *fp) - { pquis(fp, "Usage: % -l | " + { pquis(fp, "Usage: $ -l | " "{hard | soft | both | PID | RSRC[=VALUE]}...\n"); } static void version(FILE *fp) -- [mdw]