pjrinaldi / wombatforensics

linux c++, fox-toolkit, multi-threaded forensic gui tool
GNU General Public License v2.0
47 stars 12 forks source link

ulonglong to qint64 #245

Closed pjrinaldi closed 5 years ago

pjrinaldi commented 5 years ago

Thinking of switching all unsigned long long to qint64. a qint64 has a range of 9,223,372,036,854,775,807, so that is 9.22 exabytes, which should be enough for evidence size values at the moment. unsigned long long has 18 exabytes, but i run into issues comparing signed and unsigned for this...

pjrinaldi commented 5 years ago

once this is done, need to convert toULongLong() to toLongLong()

pjrinaldi commented 5 years ago

finished and compiled fine. everything should work now. will address any issues during execution as they arise rather than trying to test through this issue.