Browse Source

fix signed/unsigned warning

Mike Frysinger 19 years ago
parent
commit
f55254e2a9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/stdlib/malloc-standard/mallinfo.c

+ 1 - 1
libc/stdlib/malloc-standard/mallinfo.c

@@ -22,7 +22,7 @@ struct mallinfo attribute_hidden __mallinfo(void)
 {
     mstate av;
     struct mallinfo mi;
-    int i;
+    unsigned int i;
     mbinptr b;
     mchunkptr p;
     size_t avail;