stop using __u32 etc. uint32_t is there for a reason
[oweals/busybox.git] / miscutils / less.c
index 807a5bf4760bb826499d050cd7232f29f0d5ad16..916213082c905bb2ec9a608ed5ff916e2f4245ae 100644 (file)
@@ -415,7 +415,7 @@ static void print_ascii(const char *str)
                n = strcspn(str, controls);
                if (n) {
                        if (!str[n]) break;
-                       printf("%.*s", n, str);
+                       printf("%.*s", (int) n, str);
                        str += n;
                }
                n = strspn(str, controls);