From 289972277ac0c747363fefc22bb024533966fee1 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Thu, 8 Nov 2018 05:24:07 +0000 Subject: [PATCH] st.c: fix comparison between signed and unsigned git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65625 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st.c b/st.c index 6a943b8ddd..77d998f9fc 100644 --- a/st.c +++ b/st.c @@ -2036,7 +2036,7 @@ int st_locale_insensitive_strncasecmp(const char *s1, const char *s2, size_t n) { char c1, c2; - int i; + size_t i; for (i = 0; i < n; i++) { c1 = *s1++;