diff options
author | daan <daanl@outlook.com> | 2020-05-19 10:43:46 -0700 |
---|---|---|
committer | daan <daanl@outlook.com> | 2020-05-19 10:43:46 -0700 |
commit | cb05ef9f2cbc82428688056075fbe6e6b31bbd65 (patch) | |
tree | 313a1ccec46924e4b62a42741dadd79847f1fc33 /include/mimalloc-internal.h | |
parent | 82e29f47b38b11c7fefac98882e90cfa9cb5b80d (diff) | |
parent | 6f73cc8b1d3460dc45df3622512e2e3531553996 (diff) |
merge from dev
Diffstat (limited to 'include/mimalloc-internal.h')
-rw-r--r-- | include/mimalloc-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mimalloc-internal.h b/include/mimalloc-internal.h index 01be32c..28bfc9b 100644 --- a/include/mimalloc-internal.h +++ b/include/mimalloc-internal.h @@ -270,7 +270,7 @@ static inline bool mi_count_size_overflow(size_t count, size_t size, size_t* tot return false; } else if (mi_unlikely(mi_mul_overflow(count, size, total))) { - _mi_error_message(EOVERFLOW, "allocation request too large (%zu * %zu bytes)\n", count, size); + _mi_error_message(EOVERFLOW, "allocation request is too large (%zu * %zu bytes)\n", count, size); *total = SIZE_MAX; return true; } |