]> Zhao Yanbai Git Server - minix.git/commitdiff
fix clang warnings in servers/
authorBen Gras <ben@minix3.org>
Thu, 12 May 2011 20:23:02 +0000 (22:23 +0200)
committerBen Gras <ben@minix3.org>
Thu, 12 May 2011 20:23:02 +0000 (22:23 +0200)
servers/ext2/main.c
servers/ext2/super.c

index 54cf490588bf2068d6af1d20f49639824efc093c..ff84bab5108f5e399b3a273c0c209b902a68373d 100644 (file)
@@ -3,6 +3,7 @@
 #include <minix/callnr.h>
 #include <signal.h>
 #include <stdlib.h>
+#include <string.h>
 #include <unistd.h>
 #include <minix/dmap.h>
 #include <minix/endpoint.h>
index cb1d83b94dcf373fcaee736e05d74ce85ed9fdd5..628a1478c1161e5a49bf26f434a5510c5e0aefc5 100644 (file)
@@ -123,7 +123,7 @@ register struct super_block *sp; /* pointer to a superblock */
   /* TODO: this code is for revision 1 (but bw compatible with 0)
    * inode must be power of 2 and smaller, than block size.
    */
-  if (EXT2_INODE_SIZE(sp) & (EXT2_INODE_SIZE(sp) - 1) != 0
+  if ((EXT2_INODE_SIZE(sp) & (EXT2_INODE_SIZE(sp) - 1)) != 0
       || EXT2_INODE_SIZE(sp) > sp->s_block_size) {
        printf("superblock->s_inode_size is incorrect...\n");
        return(EINVAL);