]> granicus.if.org Git - php/commitdiff
MFH: Fixed error message typo
authorMatt Wilmas <mattwil@php.net>
Sun, 11 May 2008 11:46:44 +0000 (11:46 +0000)
committerMatt Wilmas <mattwil@php.net>
Sun, 11 May 2008 11:46:44 +0000 (11:46 +0000)
Zend/zend_alloc.c

index b66db7937f6e61bc4a2ca34dc550a85215cb08cc..4225c1754a2ea6a0b7bdec3bcaf633429946816d 100644 (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 {