shut up a warning at -Wextra level by using the right type for an index variable...
authorDavid Odin <david@forma3dev.fr>
Wed, 19 Apr 2017 16:10:34 +0000 (18:10 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Tue, 8 Nov 2022 16:03:05 +0000 (17:03 +0100)
lib/string.c

index ee69e32..8d4623b 100644 (file)
@@ -59,7 +59,7 @@ void* memset(void* s, int c, size_t count)
        unsigned long* sl = (unsigned long*) s;
        unsigned long cl = 0;
        char* s8;
-       int i;
+       size_t i;
 
        /* do it one word at a time (32 bits or 64 bits) while possible */
        if ( ((uint32_t)s & (sizeof(*sl) - 1)) == 0) {