diff options
| -rw-r--r-- | toys/pending/fdisk.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/toys/pending/fdisk.c b/toys/pending/fdisk.c index 08cfa71f..4cc0190a 100644 --- a/toys/pending/fdisk.c +++ b/toys/pending/fdisk.c @@ -46,7 +46,7 @@ GLOBALS(  #define sector(s) ((s) & 0x3f)  #define cylinder(s, c) ((c) | (((s) & 0xc0) << 2)) -typedef off_t sector_t; +typedef unsigned long long sector_t;  struct partition {    unsigned char boot_ind, head, sector, cyl, sys_ind, end_head, | 
