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

index d48c29c6ec0973f5abfd905fbef09eeac642d40a..c17abc4dc008ae894490db1c4f4f415f82d11c0b 100644 (file)
@@ -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 {