aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/syntax.c
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-11-12 21:09:44 -0500
committerGitHub <noreply@github.com>2017-11-12 21:09:44 -0500
commit8d8212d384f668e4e6dfea64e169ec85daef44a2 (patch)
treef78ed2d5fea977f6da6c50801038ce048d715332 /src/nvim/syntax.c
parentd5b7f28b44517a2e9ed07619d9fb828c043f179a (diff)
parentb63cde97f40b962f80ab929036d0eb8c1228b33f (diff)
downloadrneovim-8d8212d384f668e4e6dfea64e169ec85daef44a2.tar.gz
rneovim-8d8212d384f668e4e6dfea64e169ec85daef44a2.tar.bz2
rneovim-8d8212d384f668e4e6dfea64e169ec85daef44a2.zip
Merge pull request #7545 from jamessan/test-fixes
Fix test failures found in Debian builds, closes #7522
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r--src/nvim/syntax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c
index 913fd05482..65490768c4 100644
--- a/src/nvim/syntax.c
+++ b/src/nvim/syntax.c
@@ -8256,7 +8256,7 @@ Dictionary hl_get_attr_by_id(Integer attr_id, Boolean rgb, Error *err)
attrentry_T *aep = syn_cterm_attr2entry((int)attr_id);
if (!aep) {
api_set_error(err, kErrorTypeException,
- "Invalid attribute id: %d", attr_id);
+ "Invalid attribute id: %" PRId64, attr_id);
return dic;
}