fix cylinder rounding in ptgen
authorFelix Fietkau <nbd@openwrt.org>
Sat, 24 Feb 2007 20:20:57 +0000 (20:20 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 24 Feb 2007 20:20:57 +0000 (20:20 +0000)
SVN-Revision: 6352

tools/firmware-utils/src/ptgen.c

index 2d78eae53514cdcfa6f1d9f54b45a8f351ff8d6a..277fbbc134021d97064249fbfc7c6418f1f327b8 100644 (file)
@@ -114,7 +114,7 @@ static void to_chs(long sect, unsigned char chs[3]) {
 static inline unsigned long round_to_cyl(long sect) {
        int cyl_size = heads * sectors;
 
-       return sect + cyl_size - ((sect % cyl_size) ?: cyl_size); 
+       return sect + cyl_size - (sect % cyl_size); 
 }
 
 /* check the partition sizes and write the partition table */