diff options
Diffstat (limited to 'src/nvim/memory.c')
-rw-r--r-- | src/nvim/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/memory.c b/src/nvim/memory.c index d1649f2945..9f68b6066b 100644 --- a/src/nvim/memory.c +++ b/src/nvim/memory.c @@ -49,7 +49,7 @@ /// Try to free memory. Used when trying to recover from out of memory errors. /// @see {xmalloc} -static void try_to_free_memory() +static void try_to_free_memory(void) { static bool trying_to_free = false; // avoid recursive calls |