summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/libutil.cc')
-rw-r--r--crawl-ref/source/libutil.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/libutil.cc b/crawl-ref/source/libutil.cc
index 5b37cd5fd6..898e1a8b83 100644
--- a/crawl-ref/source/libutil.cc
+++ b/crawl-ref/source/libutil.cc
@@ -232,10 +232,10 @@ extern "C" int stricmp(const char *str1, const char *str2)
{
unsigned char c1 = tolower(*str1);
unsigned char c2 = tolower(*str2);
-
+
ret = c1 - c2;
str1++;
- str2++;
+ str2++;
}
if (ret < 0)