Fix type comparision on msi.cpp

This change fix the comparision of different signedess (int and long
unsigned int).
This commit is contained in:
Gabriel Fedel
2021-03-10 09:42:56 +01:00
parent 9184983cf0
commit 6ac10d43b1

View File

@@ -300,7 +300,7 @@ static void makeSubstitutions(inputData * const inputPvt,
char *pstart;
char *pend;
int cmdind=-1;
int i;
long unsigned int i;
for (i = 0; i < NELEMENTS(cmdNames); i++) {
if (strstr(command, cmdNames[i])) {