mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-31 14:11:36 +08:00
[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:
parent
2cc762b50b
commit
ab3a7f8fd5
@ -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.
|
||||
|
@ -389,7 +389,7 @@ _rl_strnicmp (string1, string2, count)
|
||||
break;
|
||||
s2++;
|
||||
}
|
||||
while (--count != 0)
|
||||
while (--count != 0);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user