From e2388344b29a1f5b64b1348f7e71b240b4a64670 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Wed, 5 Feb 2014 19:28:12 -0800 Subject: [PATCH] Use type int instead of type short --- wgetopt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wgetopt.cpp b/wgetopt.cpp index ef0a64592..ecf1121e5 100644 --- a/wgetopt.cpp +++ b/wgetopt.cpp @@ -270,7 +270,7 @@ exchange(wchar_t **argv) { /* Bottom segment is the short one. */ int len = middle - bottom; - short i; + int i; /* Swap it with the top part of the top segment. */ for (i = 0; i < len; i++) @@ -286,7 +286,7 @@ exchange(wchar_t **argv) { /* Top segment is the short one. */ int len = top - middle; - short i; + int i; /* Swap it with the bottom part of the bottom segment. */ for (i = 0; i < len; i++)