summaryrefslogtreecommitdiff
path: root/Zend/zend_alloc.c
diff options
context:
space:
mode:
authorMatt Wilmas <mattwil@php.net>2008-05-11 11:46:44 +0000
committerMatt Wilmas <mattwil@php.net>2008-05-11 11:46:44 +0000
commit2a8a4bd86071655fb0138591fcca8affd96a313f (patch)
tree801a83a4c03aae9f0439d6a9395651d9968bb3d3 /Zend/zend_alloc.c
parentb5281c79b597645916c4fde7a4f1bf6c15cc206f (diff)
downloadphp-git-2a8a4bd86071655fb0138591fcca8affd96a313f.tar.gz
MFH: Fixed error message typo
Diffstat (limited to 'Zend/zend_alloc.c')
-rw-r--r--Zend/zend_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c
index b66db7937f..4225c1754a 100644
--- a/Zend/zend_alloc.c
+++ b/Zend/zend_alloc.c
@@ -1123,7 +1123,7 @@ ZEND_API zend_mm_heap *zend_mm_startup(void)
if (tmp) {
seg_size = zend_atoi(tmp, 0);
if (zend_mm_low_bit(seg_size) != zend_mm_high_bit(seg_size)) {
- fprintf(stderr, "ZEND_MM_SEG_SIZE must be a power ow two.\n");
+ fprintf(stderr, "ZEND_MM_SEG_SIZE must be a power of two\n");
exit(255);
}
} else {