From: Matt Wilmas Date: Sun, 11 May 2008 11:47:01 +0000 (+0000) Subject: MFH: Fixed error message typo X-Git-Tag: RELEASE_1_2_5~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4f6cab2c3ba13e76ba9152c09699bb3980633b1;p=php MFH: Fixed error message typo --- 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 {