mirror of
https://github.com/neovim/neovim.git
synced 2025-09-15 07:48:18 +00:00
Merge pull request #13030 from Happy-Dude/quickfix_warning
Fix quickfix.c warning message on EMSGN macro #hacktoberfest
This commit is contained in:
@@ -1804,7 +1804,7 @@ static void decr_quickfix_busy(void)
|
||||
void check_quickfix_busy(void)
|
||||
{
|
||||
if (quickfix_busy != 0) {
|
||||
EMSGN("quickfix_busy not zero on exit: %ld", (long)quickfix_busy);
|
||||
EMSGN("quickfix_busy not zero on exit: %" PRId64, (int64_t)quickfix_busy);
|
||||
# ifdef ABORT_ON_INTERNAL_ERROR
|
||||
abort();
|
||||
# endif
|
||||
|
Reference in New Issue
Block a user