Fix small typo #4148
[openwrt/svn-archive/archive.git] / tools / firmware-utils / src / ptgen.c
index 2d78eae53514cdcfa6f1d9f54b45a8f351ff8d6a..d94aabb5fcf139bb47ced1a534c9decd8b906688 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 */
@@ -140,9 +140,10 @@ static int gen_ptable(int nr)
                if (verbose)
                        fprintf(stderr, "Partition %d: start=%ld, end=%ld, size=%ld\n", i, (long) start * 512, ((long) start + (long) len) * 512, (long) len * 512);
                printf("%ld\n", ((long) start * 512));
+               printf("%ld\n", ((long) len * 512));
        }
 
-       if ((fd = open(filename, O_WRONLY|O_CREAT, 0644)) < 0) {
+       if ((fd = open(filename, O_WRONLY|O_CREAT|O_TRUNC, 0644)) < 0) {
                fprintf(stderr, "Can't open output file '%s'\n",filename);
                return -1;
        }