From: Brett Gordon Date: Tue, 11 Oct 2016 14:16:14 +0000 (-0400) Subject: sync: gcc complains about sync being void X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=20f7db99e1b0617a7f6f543a87f387a0a4e25eb8;p=FUZIX.git sync: gcc complains about sync being void --- diff --git a/Applications/util/sync.c b/Applications/util/sync.c index 863d6899..ed8b7f1d 100644 --- a/Applications/util/sync.c +++ b/Applications/util/sync.c @@ -2,5 +2,5 @@ main(int argc, const char *argv[]) { - return sync(); + sync(); }