MFH: Fixed error message typo

This commit is contained in:
Matt Wilmas 2008-05-11 11:46:44 +00:00
parent b5281c79b5
commit 2a8a4bd860

View File

@ -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 {