From 0cfb5be72f4d74539d7b7e8c4ea0d0b5fcc03a38 Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Fri, 12 Nov 2010 03:15:45 +0000 Subject: Fix problems with sector command line arguments being too small. --- src/drive.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/drive.h') diff --git a/src/drive.h b/src/drive.h index cd8078b..e943ef1 100644 --- a/src/drive.h +++ b/src/drive.h @@ -36,15 +36,15 @@ struct _drivelocks; typedef struct _partitioninfo { - uint32 first; /* The first sector (in sectors) */ - uint32 end; /* The end sector (in sectors) */ - uint32 mft; /* Offset into the MFT (in sectors) */ - byte cluster; /* Cluster size (in sectors) */ - int device; /* A handle to an open device */ - - /* Some other context stuff about the drive */ - struct _drivelocks* locks; - struct _ntfsx_mftmap* mftmap; + uint64 first; /* The first sector (in sectors) */ + uint64 end; /* The end sector (in sectors) */ + uint64 mft; /* Offset into the MFT (in sectors) */ + byte cluster; /* Cluster size (in sectors) */ + int device; /* A handle to an open device */ + + /* Some other context stuff about the drive */ + struct _drivelocks* locks; + struct _ntfsx_mftmap* mftmap; } partitioninfo; -- cgit v1.2.3