fixed some signed/unsigned comparison warnings with -Wsign-compare
[reactos.git] / reactos / boot / freeldr / freeldr / rtl / print.c
index b5c7b65..e7450dc 100644 (file)
@@ -27,7 +27,7 @@
  */
 void print(char *str)
 {
-       int     i;
+       size_t  i;
 
        for (i = 0; i < strlen(str); i++)
                MachConsPutChar(str[i]);