From a9c69762badc6f3f624517e329b2349c6ec125e0 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Fri, 16 Feb 2001 10:21:35 +0000 Subject: Fix compile error, sync() always returns 0 anyway. --- coreutils/sync.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'coreutils') diff --git a/coreutils/sync.c b/coreutils/sync.c index fc5a42b8a..3d4686efa 100644 --- a/coreutils/sync.c +++ b/coreutils/sync.c @@ -23,11 +23,13 @@ #include "busybox.h" #include +#include #include extern int sync_main(int argc, char **argv) { if (argc > 1 && **(argv + 1) == '-') show_usage(); - return(sync()); + sync(); + return(EXIT_SUCCESS); } -- cgit v1.2.3