aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-10-16 21:51:50 -0400
committerGitHub <noreply@github.com>2020-10-16 21:51:50 -0400
commit288f7f8558c331fadcc72e9c7391fff08d42ba36 (patch)
tree2a0a3631c796f4c774ae6b81b51b867094de8d4a /src
parent0af18a6a4325d24bf4c386edb81c2f3776dab787 (diff)
parentf126721357484a9c79fcdd17acb95e558308a5b7 (diff)
downloadrneovim-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.c2
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