]> err.no Git - util-linux/commitdiff
cfdisk: fix "cannot seek on disk drive" bug
authorKarel Zak <kzak@redhat.com>
Tue, 28 Apr 2009 07:16:32 +0000 (09:16 +0200)
committerKarel Zak <kzak@redhat.com>
Tue, 28 Apr 2009 07:16:32 +0000 (09:16 +0200)
Addresses-Debian-Bug: #511161
Signed-off-by: Karel Zak <kzak@redhat.com>
TODO
fdisk/cfdisk.c

diff --git a/TODO b/TODO
index 3c7a95bb13e6754d660bba37621605db9aa89bd8..21b0ee3321ab896c179d451afb2b5904a45a6f76 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,3 +1,5 @@
+ * fdisk/* -- use off_t instead "long long"
+
  * mkswap: use /proc/sys/kernel/random/uuid as a fallback solution for builds 
    without libuuid
 
index 10ba31a152fb4abb26a36611f1fbbddb5d3d5a29..96246803e01a580b8218a24297cdab56d9ecf0da 100644 (file)
@@ -303,7 +303,7 @@ partition_info ext_info;
 int num_parts = 0;
 
 int logical = 0;
-int logical_sectors[MAXIMUM_PARTS];
+long long logical_sectors[MAXIMUM_PARTS];
 
 __sighandler_t old_SIGINT, old_SIGTERM;