From 072c240bc2c27b08a12008af41ab6f41723599ad Mon Sep 17 00:00:00 2001 From: Lech Lorens Date: Tue, 27 Apr 2010 22:52:55 +0200 Subject: [PATCH] feat/tagfunc: fixed a warning about signedness from gcc. --- src/tag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tag.c b/src/tag.c index 5770ec3f..f4032f19 100644 --- a/src/tag.c +++ b/src/tag.c @@ -1259,7 +1259,7 @@ find_tfu_tags(char_u *pat, garray_T *ga, int *match_count) static int call_level = 0; args[0] = pat; - args[1] = g_tag_at_cursor? "c": ""; + args[1] = (char_u *) (g_tag_at_cursor? "c": ""); /* Prevent endless loop: */ ++call_level; -- 2.11.4.GIT