diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-16 21:51:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-16 21:51:50 -0400 |
commit | 288f7f8558c331fadcc72e9c7391fff08d42ba36 (patch) | |
tree | 2a0a3631c796f4c774ae6b81b51b867094de8d4a /src | |
parent | 0af18a6a4325d24bf4c386edb81c2f3776dab787 (diff) | |
parent | f126721357484a9c79fcdd17acb95e558308a5b7 (diff) | |
download | rneovim-288f7f8558c331fadcc72e9c7391fff08d42ba36.tar.gz rneovim-288f7f8558c331fadcc72e9c7391fff08d42ba36.tar.bz2 rneovim-288f7f8558c331fadcc72e9c7391fff08d42ba36.zip |
Merge pull request #13030 from Happy-Dude/quickfix_warning
Fix quickfix.c warning message on EMSGN macro #hacktoberfest
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index c0e32a2b13..5ade59d224 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -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 |