Branch: refs/heads/master Author: Matthew Brush matt@geany.org Committer: Matthew Brush matt@geany.org Date: Thu, 21 Dec 2017 01:22:50 UTC Commit: 63850b3eb7302b6ce1c4223581be7687dc231a11 https://github.com/geany/geany/commit/63850b3eb7302b6ce1c4223581be7687dc231a...
Log Message: ----------- Fix pointer and character constant comparison
Modified Paths: -------------- ctags/main/parse.c
Modified: ctags/main/parse.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -103,7 +103,7 @@ extern kindOption* getLanguageFileKind (const langType language)
kind = LanguageTable [language]->fileKind;
- Assert (kind != KIND_NULL); + Assert (kind != NULL);
return kind; }
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).