From: Matt Wilmas Date: Sun, 11 May 2008 11:45:31 +0000 (+0000) Subject: Fixed error message typo; also removed end . to be consistent with the others X-Git-Tag: RELEASE_2_0_0b1~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ddb49caec245fd9e055d348350198e0e57592a0;p=php Fixed error message typo; also removed end . to be consistent with the others --- diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 6d17661efb..8ea0444669 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -1151,7 +1151,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 {