fix cylinder rounding in ptgen
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 24 Feb 2007 20:20:57 +0000 (20:20 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 24 Feb 2007 20:20:57 +0000 (20:20 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6352 3c298f89-4303-0410-b956-a3cf2f4a3e73

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 */