whoops; really fix the 32-bit builds

This commit is contained in:
Nick Mathewson
2015-12-21 13:10:10 -05:00
parent 8ede8d411a
commit f2a5df252f
+1 -1
View File
@@ -4102,7 +4102,7 @@ have_enough_mem_for_dircache(const or_options_t *options, size_t total_mem,
if (total_mem == 0) {
if (get_total_system_memory(&total_mem) < 0) {
total_mem = options->MaxMemInQueues >= SIZE_MAX ?
SIZE_MAX : options->MaxMemInQueues;
SIZE_MAX : (size_t)options->MaxMemInQueues;
}
}
if (options->DirCache) {