[MinGW] Fix a compilation error in readline/util.c:_rl_strnicmp

readline/ChangeLog.gdb:

	* readline/util.c (_rl_strnicmp): Add missing semicolon.
This commit is contained in:
Joel Brobecker 2013-09-23 16:05:24 +00:00
parent 2cc762b50b
commit ab3a7f8fd5
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-09-23 Martin Benda <martin.benda@omsquare.com>
Checked in by Joel Brobecker <brobecker@adacore.com>
* readline/util.c (_rl_strnicmp): Add missing semicolon.
2013-05-22 Yao Qi <yao@codesourcery.com>
* configure.in: Invoke AC_CANONICAL_BUILD.

View file

@ -389,7 +389,7 @@ _rl_strnicmp (string1, string2, count)
break;
s2++;
}
while (--count != 0)
while (--count != 0);
return (0);
}