diff options
Diffstat (limited to 'sync.c')
-rw-r--r-- | sync.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -5,9 +5,8 @@ extern int | |||
5 | sync_main(int argc, char * * argv) | 5 | sync_main(int argc, char * * argv) |
6 | { | 6 | { |
7 | if ( **(argv+1) == '-' ) { | 7 | if ( **(argv+1) == '-' ) { |
8 | fprintf(stderr, "Usage: sync\nWrite all buffered filesystem blocks to disk.\n"); | 8 | usage( "sync\nWrite all buffered filesystem blocks to disk.\n"); |
9 | exit(FALSE); | ||
10 | } | 9 | } |
11 | return sync(); | 10 | return sync(); |
12 | } | 11 | } |
13 | 12 | ||