From 98e8c1f37cee11b440a04257fe45f7d1a80ce6c1 Mon Sep 17 00:00:00 2001 From: ZyX Date: Sun, 5 Jul 2015 14:08:13 +0300 Subject: shada: Refactor file reading/writing to use os_open --- src/nvim/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/memory.c') diff --git a/src/nvim/memory.c b/src/nvim/memory.c index 132c895997..d25dc7c941 100644 --- a/src/nvim/memory.c +++ b/src/nvim/memory.c @@ -30,7 +30,7 @@ /// Try to free memory. Used when trying to recover from out of memory errors. /// @see {xmalloc} -static void try_to_free_memory(void) +void try_to_free_memory(void) { static bool trying_to_free = false; // avoid recursive calls -- cgit