]> granicus.if.org Git - php/commitdiff
Fixed error message typo; also removed end . to be consistent with the others
authorMatt Wilmas <mattwil@php.net>
Sun, 11 May 2008 11:45:31 +0000 (11:45 +0000)
committerMatt Wilmas <mattwil@php.net>
Sun, 11 May 2008 11:45:31 +0000 (11:45 +0000)
Zend/zend_alloc.c

index 6d17661efbdbc8887867b1284613722b21615700..8ea0444669debbc9977e97daaecb42338fae2f96 100644 (file)
@@ -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 {