]> err.no Git - util-linux/commitdiff
mkfs.minix: clean up gcc warnings
authorKarel Zak <kzak@redhat.com>
Thu, 20 Mar 2008 13:57:40 +0000 (14:57 +0100)
committerKarel Zak <kzak@redhat.com>
Thu, 20 Mar 2008 13:57:40 +0000 (14:57 +0100)
mkfs.minix.c:199: warning: ‘count_blocks’ defined but not used

Signed-off-by: Karel Zak <kzak@redhat.com>
disk-utils/mkfs.minix.c

index 5a1e13488879aa094d267e44308e481350110f74..a5e099261e8b5e115a75b343ba4c91e10ccac75c 100644 (file)
@@ -184,37 +184,6 @@ check_mount(void) {
        die(_("%s is mounted; will not make a filesystem here!"));
 }
 
-static long
-valid_offset (int fd, int offset) {
-       char ch;
-
-       if (lseek (fd, offset, 0) < 0)
-               return 0;
-       if (read (fd, &ch, 1) < 1)
-               return 0;
-       return 1;
-}
-
-static int
-count_blocks (int fd) {
-       int high, low;
-
-       low = 0;
-       for (high = 1; valid_offset (fd, high); high *= 2)
-               low = high;
-       while (low < high - 1)
-       {
-               const int mid = (low + high) / 2;
-
-               if (valid_offset (fd, mid))
-                       low = mid;
-               else
-                       high = mid;
-       }
-       valid_offset (fd, 0);
-       return (low + 1);
-}
-
 static void
 write_tables(void) {
        /* Mark the super block valid. */