diff options
| author | Liu Aleaxander <Aleaxander@gmail.com> | 2009-07-11 05:46:47 +0800 |
|---|---|---|
| committer | Liu Aleaxander <Aleaxander@gmail.com> | 2009-07-11 05:46:47 +0800 |
| commit | 46cf51c77881189413fca90f56f12bc1e72241a8 (patch) | |
| tree | 26b4f4db6dcea7c48ac9eeb7b33cc3c3ffefd4a2 /core/include/disk.h | |
| parent | d84cf9dbc1fc1e3dfd9ab58ed1a2dceb447f93b9 (diff) | |
| download | syslinux-46cf51c77881189413fca90f56f12bc1e72241a8.tar.gz | |
Core: changes the sector_t and block_t types to be uint64_t
Diffstat (limited to 'core/include/disk.h')
| -rw-r--r-- | core/include/disk.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/include/disk.h b/core/include/disk.h index 376052dd..386f4f7b 100644 --- a/core/include/disk.h +++ b/core/include/disk.h @@ -8,9 +8,8 @@ #define SECTOR_SHIFT 9 #define SECTOR_SIZE (1 << SECTOR_SHIFT) -/* I do want it be simple for now */ -typedef uint32_t sector_t; -typedef uint32_t block_t; +typedef uint64_t sector_t; +typedef uint64_t block_t; /* |
