diff options
author | Christophe Grenier <grenier@cgsecurity.org> | 2016-10-26 07:53:02 +0200 |
---|---|---|
committer | Christophe Grenier <grenier@cgsecurity.org> | 2016-10-26 07:53:02 +0200 |
commit | 11a83ca7c9999128410a37667c75d6b7e8985c04 (patch) | |
tree | c0a90aed2637522a24be7a75c3e2974a063785c5 /src/intrfn.h | |
parent | f8ec7514eaf053d5d47c3db2824abc2b97c8f3d6 (diff) |
Enable start/stop sectors bigger than UINT_MAX when creating partition
https://github.com/cgsecurity/testdisk/issues/5
Diffstat (limited to 'src/intrfn.h')
-rw-r--r-- | src/intrfn.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intrfn.h b/src/intrfn.h index adfe5b2..b49257e 100644 --- a/src/intrfn.h +++ b/src/intrfn.h @@ -43,7 +43,7 @@ void aff_copy(WINDOW *window); void aff_copy_short(WINDOW *window); void aff_LBA2CHS(const disk_t *disk_car, const unsigned long int pos_LBA); void aff_part(WINDOW *window, const unsigned int newline, const disk_t *disk_car, const partition_t *partition); -unsigned long long int ask_number(const unsigned long long int val_cur, const unsigned long long int val_min, const unsigned long long int val_max, const char * _format, ...) __attribute__ ((format (printf, 4, 5))); +uint64_t ask_number(const uint64_t val_cur, const uint64_t val_min, const uint64_t val_max, const char * _format, ...) __attribute__ ((format (printf, 4, 5))); int ask_YN(WINDOW *window); int ask_confirmation(const char*_format, ...) __attribute__ ((format (printf, 1, 2))); int check_enter_key_or_s(WINDOW *window); |