From 69829916b51c80c77297d96aedbd8b5be72e7d4a Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 30 May 2017 17:37:53 -0400 Subject: [PATCH] Fixed -Wstrict-prototypes warning. --- code/autoupdater/autoupdater.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/autoupdater/autoupdater.c b/code/autoupdater/autoupdater.c index e8b8d40c..7e20d331 100644 --- a/code/autoupdater/autoupdater.c +++ b/code/autoupdater/autoupdater.c @@ -145,8 +145,8 @@ static void die(const char *why) exit(1); } -static void outOfMemory() NEVER_RETURNS; -static void outOfMemory() +static void outOfMemory(void) NEVER_RETURNS; +static void outOfMemory(void) { die("Out of memory"); }