diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-09-23 16:05:24 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-09-23 16:05:24 +0000 |
commit | ab3a7f8fd557a78fa9f8cd454f746cc931baf326 (patch) | |
tree | 04308357aabb57b1a75dcf9b029d1d0c7ee84a65 /readline/util.c | |
parent | 2cc762b50b0fe63c0de4cf1e00f4f85f7a8687e9 (diff) | |
download | gdb-ab3a7f8fd557a78fa9f8cd454f746cc931baf326.zip gdb-ab3a7f8fd557a78fa9f8cd454f746cc931baf326.tar.gz gdb-ab3a7f8fd557a78fa9f8cd454f746cc931baf326.tar.bz2 |
[MinGW] Fix a compilation error in readline/util.c:_rl_strnicmp
readline/ChangeLog.gdb:
* readline/util.c (_rl_strnicmp): Add missing semicolon.
Diffstat (limited to 'readline/util.c')
-rw-r--r-- | readline/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/readline/util.c b/readline/util.c index 6c68ad8..321dee2 100644 --- a/readline/util.c +++ b/readline/util.c @@ -389,7 +389,7 @@ _rl_strnicmp (string1, string2, count) break; s2++; } - while (--count != 0) + while (--count != 0); return (0); } |