[geany/geany] dbd057: Fix comparison between signed and unsigned integers
Matthew Brush
git-noreply at xxxxx
Fri Jan 12 22:09:34 UTC 2018
Branch: refs/heads/master
Author: Matthew Brush <matt at geany.org>
Committer: Matthew Brush <matt at geany.org>
Date: Thu, 21 Dec 2017 01:22:50 UTC
Commit: dbd0573dd6a5175ec9b536c4053bb66caac0f665
https://github.com/geany/geany/commit/dbd0573dd6a5175ec9b536c4053bb66caac0f665
Log Message:
-----------
Fix comparison between signed and unsigned integers
Modified Paths:
--------------
ctags/main/parse.c
Modified: ctags/main/parse.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -316,7 +316,7 @@ static void initializeParserOne (langType lang)
static void initializeParsers (void)
{
- int i;
+ unsigned int i;
for (i = 0; i < LanguageCount; i++)
initializeParserOne(i);
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Commits
mailing list