aboutsummaryrefslogtreecommitdiff
path: root/sync.c
diff options
context:
space:
mode:
Diffstat (limited to 'sync.c')
-rw-r--r--sync.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sync.c b/sync.c
index 572d74924..8800f2e76 100644
--- a/sync.c
+++ b/sync.c
@@ -5,9 +5,8 @@ extern int
5sync_main(int argc, char * * argv) 5sync_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