opnsense-ports/sysutils/sleuthkit/files/patch-tsk_hashdb_binsrch__index.cpp
Franco Fichtner 644d7101dc */*: sync with upstream
Taken from: FreeBSD
2015-10-15 19:45:45 +02:00

11 lines
444 B
C++

--- tsk/hashdb/binsrch_index.cpp.orig 2015-09-16 17:07:12 UTC
+++ tsk/hashdb/binsrch_index.cpp
@@ -23,7 +23,7 @@
// the hash, so there are 2 ^ 12 or 4096 possible entries.
static const size_t IDX_IDX_ENTRY_COUNT = 4096;
static const size_t IDX_IDX_SIZE = IDX_IDX_ENTRY_COUNT * sizeof(uint64_t);
-static const uint64_t IDX_IDX_ENTRY_NOT_SET = 0xFFFFFFFFFFFFFFFF;
+static const uint64_t IDX_IDX_ENTRY_NOT_SET = 0xFFFFFFFFFFFFFFFFULL;
/**