1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 10:58:12 +03:00

fix cylinder rounding in ptgen

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6352 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-02-24 20:20:57 +00:00
parent ea4e6a2593
commit bec946377a

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