[geany/geany-plugins] b5cd23: pairtaghighlighter: Fix sign comparison warning

Colomban Wendling git-noreply at xxxxx
Thu May 22 00:21:19 UTC 2014


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Thu, 22 May 2014 00:21:19 UTC
Commit:      b5cd23dc76cd70baaffae9bd4b0da798a800312b
             https://github.com/geany/geany-plugins/commit/b5cd23dc76cd70baaffae9bd4b0da798a800312b

Log Message:
-----------
pairtaghighlighter: Fix sign comparison warning


Modified Paths:
--------------
    pairtaghighlighter/src/pair_tag_highlighter.c

Modified: pairtaghighlighter/src/pair_tag_highlighter.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -171,7 +171,7 @@ static gboolean is_tag_empty(gchar *tagName)
                          "hr", "img", "input", "keygen", "link", "meta",
                          "param", "source", "track", "wbr", "!DOCTYPE"};
 
-    int i;
+    unsigned int i;
     for(i=0; i<(sizeof(emptyTags)/sizeof(emptyTags[0])); i++)
     {
         if(strcmp(tagName, emptyTags[i]) == 0)



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Plugins-Commits mailing list