diff options
author | Eric Andersen | 1999-10-18 22:28:26 +0000 |
---|---|---|
committer | Eric Andersen | 1999-10-18 22:28:26 +0000 |
commit | b0e9a709ba1ae1724d413a77f5b67b1a3e6c6cb7 (patch) | |
tree | b951f34000ebdef0491eecd9386e5ea3e535171a /swaponoff.c | |
parent | 703c62da63aa31d665a8215f373b26e4b54f1bf4 (diff) | |
download | busybox-b0e9a709ba1ae1724d413a77f5b67b1a3e6c6cb7.zip busybox-b0e9a709ba1ae1724d413a77f5b67b1a3e6c6cb7.tar.gz |
More stuff.
-Erik
Diffstat (limited to 'swaponoff.c')
-rw-r--r-- | swaponoff.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/swaponoff.c b/swaponoff.c index 56f93b3..5a2d735 100644 --- a/swaponoff.c +++ b/swaponoff.c @@ -33,10 +33,10 @@ static int whichApp; static const char* appName; static const char swapoff_usage[] = -"Usage: swapoff device\n" +"swapoff device\n" "\nStop swapping virtual memory pages on the given device.\n"; static const char swapon_usage[] = -"Usage: swapon device\n" +"swapon device\n" "\nStart swapping virtual memory pages on the given device.\n"; @@ -112,10 +112,10 @@ swap_on_off_main(int argc, char * * argv) } } swap_enable_disable(*argv); - //exit( TRUE); + exit( TRUE); usage_and_exit: - fprintf(stderr, "Usage: %s", (whichApp==SWAPON_APP)? swapon_usage : swapoff_usage); - exit(FALSE); + usage( (whichApp==SWAPON_APP)? swapon_usage : swapoff_usage); + exit( FALSE); } |