diff options
author | daan <daanl@outlook.com> | 2020-05-19 10:16:28 -0700 |
---|---|---|
committer | daan <daanl@outlook.com> | 2020-05-19 10:16:28 -0700 |
commit | a7d2bc8ad63699a8b661c2048be69f4362126a65 (patch) | |
tree | ab9efaff8bf14af3918834af16bae3805dbf6bed /include/mimalloc-internal.h | |
parent | 74986c1dd141f1b255b82ae9e7950fe0614f1f95 (diff) |
edit warning messages to be more consistent
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 d0c0b3f..3541331 100644 --- a/include/mimalloc-internal.h +++ b/include/mimalloc-internal.h @@ -263,7 +263,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; } |