From 20f7db99e1b0617a7f6f543a87f387a0a4e25eb8 Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Tue, 11 Oct 2016 10:16:14 -0400 Subject: [PATCH] sync: gcc complains about sync being void --- Applications/util/sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- 2.34.1