mbr: Fix stray > at end of output with four primary partitions, no extended partitions
authorWill Sowerbutts <will@sowerbutts.com>
Sat, 24 Jan 2015 23:13:10 +0000 (23:13 +0000)
committerWill Sowerbutts <will@sowerbutts.com>
Sat, 24 Jan 2015 23:13:10 +0000 (23:13 +0000)
Kernel/dev/mbr.c

index 1bd672d..2c7855c 100644 (file)
@@ -79,7 +79,7 @@ void mbr_parse(blkdev_t *blk, char letter)
        seen++;
     }while(lba);
 
-    if(next >= 4)
+    if(ep_offset && next >= 4)
        kputs("> ");
 
     /* release temporary memory */