commit e55ce072fd1a3d4d1c6e1ee90c709fd5618c57b8
parent 3db478829c602faeb9b507c17433c977c953b7b6
Author: Christos Margiolis <christos@margiolis.net>
Date: Sat, 2 Apr 2022 01:12:14 +0300
fix usage
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README b/README
@@ -16,7 +16,7 @@ Usage
Make sure all settings in config.mk are set according to your system.
# make install clean
- $ nfy str...
+ $ echo foo | nfy
nfy will be installed in `/usr/local/bin` by default.
diff --git a/nfy.c b/nfy.c
@@ -60,7 +60,7 @@ sighandler(int sig)
static void
usage(void)
{
- fprintf(stderr, "usage: %s [-v] str...\n", argv0);
+ fprintf(stderr, "usage: %s [-v]\n", argv0);
exit(1);
}