diff --git a/lib/helius_microrl/microrl.c b/lib/helius_microrl/microrl.c index 55b7ced..53c72a3 100755 --- a/lib/helius_microrl/microrl.c +++ b/lib/helius_microrl/microrl.c @@ -467,10 +467,10 @@ static void microrl_backspace (microrl_t * pThis) //***************************************************************************** static int common_len (char ** arr) { - int i; - int j; + unsigned int i; + unsigned int j; char *shortest = arr[0]; - int shortlen = strlen(shortest); + unsigned int shortlen = strlen(shortest); for (i = 0; arr[i] != NULL; ++i) if (strlen(arr[i]) < shortlen) {