• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révisionab3a7f8fd557a78fa9f8cd454f746cc931baf326 (tree)
l'heure2013-09-24 01:05:24
AuteurJoel Brobecker <brobecker@gnat...>
CommiterJoel Brobecker

Message de Log

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

readline/ChangeLog.gdb:

* readline/util.c (_rl_strnicmp): Add missing semicolon.

Change Summary

Modification

--- a/readline/ChangeLog.gdb
+++ b/readline/ChangeLog.gdb
@@ -1,3 +1,8 @@
1+2013-09-23 Martin Benda <martin.benda@omsquare.com>
2+
3+ Checked in by Joel Brobecker <brobecker@adacore.com>
4+ * readline/util.c (_rl_strnicmp): Add missing semicolon.
5+
16 2013-05-22 Yao Qi <yao@codesourcery.com>
27
38 * configure.in: Invoke AC_CANONICAL_BUILD.
--- a/readline/util.c
+++ b/readline/util.c
@@ -389,7 +389,7 @@ _rl_strnicmp (string1, string2, count)
389389 break;
390390 s2++;
391391 }
392- while (--count != 0)
392+ while (--count != 0);
393393
394394 return (0);
395395 }