]> Zhao Yanbai Git Server - minix.git/commitdiff
Fixed some compiler warnings.
authorBen Gras <ben@minix3.org>
Tue, 31 May 2005 11:14:37 +0000 (11:14 +0000)
committerBen Gras <ben@minix3.org>
Tue, 31 May 2005 11:14:37 +0000 (11:14 +0000)
boot/boot.h
boot/rawfs.c

index 5d1d9a257e8390ce0f30a78730abcb88ab29561b..04218dac4dc393ffb6935f14be56c0dbccb6bdfd 100755 (executable)
@@ -203,6 +203,7 @@ EXTERN char *drun;  /* Initial command from DOS command line. */
 #endif
 
 void readblock(off_t, char *, int);
+void delay(char *);
 
 /*
  * $PchId: boot.h,v 1.12 2002/02/27 19:42:45 philip Exp $
index d0f0478f313503361e01feb8bf76fe8419261df2..baa720cf762db680416dfc06664ec115fa8d9c63 100755 (executable)
@@ -85,7 +85,6 @@ off_t r_super(int *bs)
                *bs = block_size = super.s_block_size;
                if(block_size < MIN_BLOCK_SIZE ||
                        block_size > MAX_BLOCK_SIZE) {
-                       printf("bogus block size %d\n", block_size);
                        return 0;
                }
                nr_dzones= V2_NR_DZONES;