summaryrefslogtreecommitdiff
path: root/include/mimalloc-internal.h
diff options
context:
space:
mode:
authordaan <daanl@outlook.com>2020-05-19 10:16:28 -0700
committerdaan <daanl@outlook.com>2020-05-19 10:16:28 -0700
commita7d2bc8ad63699a8b661c2048be69f4362126a65 (patch)
treeab9efaff8bf14af3918834af16bae3805dbf6bed /include/mimalloc-internal.h
parent74986c1dd141f1b255b82ae9e7950fe0614f1f95 (diff)
edit warning messages to be more consistent
Diffstat (limited to 'include/mimalloc-internal.h')
-rw-r--r--include/mimalloc-internal.h2
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;
}