From: Felix Fietkau Date: Wed, 23 May 2007 18:15:11 +0000 (+0000) Subject: fix x86 boot filesystem allocation (#1736) X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=6cf09425ded10c2935c35526e66e1057746e29dd;p=project%2Ffirmware-utils.git fix x86 boot filesystem allocation (#1736) SVN-Revision: 7312 --- diff --git a/src/ptgen.c b/src/ptgen.c index ce93016..8733e25 100644 --- a/src/ptgen.c +++ b/src/ptgen.c @@ -140,8 +140,8 @@ 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)); } - printf("%ld\n", ((long) (start + len) * 512)); if ((fd = open(filename, O_WRONLY|O_CREAT, 0644)) < 0) { fprintf(stderr, "Can't open output file '%s'\n",filename);