]> Zhao Yanbai Git Server - minix.git/commitdiff
Amd64 cross-compilation fix.
authorKees Jongenburger <kees.jongenburger@gmail.com>
Mon, 27 Aug 2012 15:31:03 +0000 (15:31 +0000)
committerKees Jongenburger <kees.jongenburger@gmail.com>
Mon, 27 Aug 2012 15:31:03 +0000 (15:31 +0000)
* Remove usage of _MINIX and __i386__ in mkfs.c  to make
  conditional compilation orthogonal.

usr.sbin/mkfs.mfs/mkfs.c

index ea980be57a7797f4f58591ad7dc4e77f52c7f4ee..9a0fd9fab259524a5748482c84a40c0b29ec6c0a 100644 (file)
@@ -24,7 +24,7 @@
 #include "const.h"
 #include "type.h"
 #include "mfsdir.h"
-#if (defined(__minix) && defined(__i386__))
+#if defined(__minix)
 #include <minix/partition.h>
 #include <minix/u64.h>
 #include <sys/ioctl.h>
@@ -277,7 +277,7 @@ char *argv[];
                if (blocks == 0) pexit("Can't open prototype file");
        }
        if (i == 0) {
-#if defined(_MINIX) || defined(__minix)
+#if defined(__minix)
                uint32_t kb = div64u(mul64u(blocks, block_size), 1024);
 #else
                uint32_t kb = ((unsigned long long) blocks * block_size) / 1024;