diff options
author | ZyX <kp-pav@yandex.ru> | 2015-07-05 14:08:13 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2015-10-08 21:59:56 +0300 |
commit | 98e8c1f37cee11b440a04257fe45f7d1a80ce6c1 (patch) | |
tree | 0c5d859ccd2483bc6d4f890699779eb3ee341da3 /src/nvim/memory.c | |
parent | d1ae27ceec467605d02e6388d5b8007bc9359d52 (diff) | |
download | rneovim-98e8c1f37cee11b440a04257fe45f7d1a80ce6c1.tar.gz rneovim-98e8c1f37cee11b440a04257fe45f7d1a80ce6c1.tar.bz2 rneovim-98e8c1f37cee11b440a04257fe45f7d1a80ce6c1.zip |
shada: Refactor file reading/writing to use os_open
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 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 |