summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wilmas <mattwil@php.net>2008-05-11 11:47:01 +0000
committerMatt Wilmas <mattwil@php.net>2008-05-11 11:47:01 +0000
commite4f6cab2c3ba13e76ba9152c09699bb3980633b1 (patch)
treef78b8e55471d1bf848790430f435827247f986db
parent3bf703845f41930b8420937afb94467c9a9d4a74 (diff)
downloadphp-git-e4f6cab2c3ba13e76ba9152c09699bb3980633b1.tar.gz
MFH: Fixed error message typo
-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 d48c29c6ec..c17abc4dc0 100644
--- a/Zend/zend_alloc.c
+++ b/Zend/zend_alloc.c
@@ -1115,7 +1115,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 {