mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
Fixed -Wstrict-prototypes warning.
This commit is contained in:
parent
240965ddbc
commit
69829916b5
1 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue