Fixed -Wstrict-prototypes warning.

This commit is contained in:
Ryan C. Gordon 2017-05-30 17:37:53 -04:00
parent 240965ddbc
commit 69829916b5
1 changed files with 2 additions and 2 deletions

View File

@ -145,8 +145,8 @@ static void die(const char *why)
exit(1); exit(1);
} }
static void outOfMemory() NEVER_RETURNS; static void outOfMemory(void) NEVER_RETURNS;
static void outOfMemory() static void outOfMemory(void)
{ {
die("Out of memory"); die("Out of memory");
} }