diff options
author | Lewis Russell <lewis6991@gmail.com> | 2023-04-19 17:04:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 17:04:00 +0100 |
commit | 706f871014b46300180156590ff269ee38473989 (patch) | |
tree | 4c30cbf8470f2a4cecb2d1e1f44e223281f6b1f9 /src/nvim/log.c | |
parent | 3940c435e4058f75b8ecbfc9f9c3b2a2c4b64f37 (diff) | |
download | rneovim-706f871014b46300180156590ff269ee38473989.tar.gz rneovim-706f871014b46300180156590ff269ee38473989.tar.bz2 rneovim-706f871014b46300180156590ff269ee38473989.zip |
build: update uncrustify to 0.76
Diffstat (limited to 'src/nvim/log.c')
-rw-r--r-- | src/nvim/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/log.c b/src/nvim/log.c index 4de0c4d88c..afe3d95e9a 100644 --- a/src/nvim/log.c +++ b/src/nvim/log.c @@ -131,7 +131,7 @@ void log_unlock(void) /// @return true if log was emitted normally, false if failed or recursive bool logmsg(int log_level, const char *context, const char *func_name, int line_num, bool eol, const char *fmt, ...) - FUNC_ATTR_UNUSED FUNC_ATTR_PRINTF(6, 7) + FUNC_ATTR_PRINTF(6, 7) { static bool recursive = false; static bool did_msg = false; // Showed recursion message? |