aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/syntax.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-01-10 09:33:27 -0500
committerJustin M. Keyes <justinkz@gmail.com>2015-01-10 09:33:27 -0500
commitf2460e93be3e047c1350a970e5963aadc90f2697 (patch)
tree5e861e5fbdac77afaab50ea7da9982479d26102e /src/nvim/syntax.c
parent515acf72247518ed34c5f76ce6fe007217cd94bb (diff)
parent85904c992e3b8bd142bdedbb3b85cd17be67b39a (diff)
downloadrneovim-f2460e93be3e047c1350a970e5963aadc90f2697.tar.gz
rneovim-f2460e93be3e047c1350a970e5963aadc90f2697.tar.bz2
rneovim-f2460e93be3e047c1350a970e5963aadc90f2697.zip
Merge pull request #1788 from elmart/remove-long_u-4
Remove project-specific integer types: long_u. (4)
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 6787ca8080..f35da39bb3 100644
--- a/src/nvim/syntax.c
+++ b/src/nvim/syntax.c
@@ -6593,7 +6593,7 @@ do_highlight (
* Copy characters from arg[] to buf[], translating <> codes.
*/
for (p = arg, off = 0; off < 100 - 6 && *p; ) {
- len = trans_special(&p, buf + off, FALSE);
+ len = (int)trans_special(&p, buf + off, FALSE);
if (len > 0) /* recognized special char */
off += len;
else /* copy as normal char */