cvs: ZendEngine2(PHP_5_2) / zend_alloc.c
[email protected] ("Matt Wilmas")
| Newsgroups | php.zend-engine.cvs |
|---|---|
| Message-ID | <cvsmattwil1210506421@cvsserver> |
mattwil Sun May 11 11:47:01 2008 UTC
Modified files: (Branch: PHP_5_2)
/ZendEngine2 zend_alloc.c
Log:
MFH: Fixed error message typo
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_alloc.c?r1=1.144.2.3.2.47&r2=1.144.2.3.2.48&diff_format=u
Index: ZendEngine2/zend_alloc.c
diff -u ZendEngine2/zend_alloc.c:1.144.2.3.2.47 ZendEngine2/zend_alloc.c:1.144.2.3.2.48
--- ZendEngine2/zend_alloc.c:1.144.2.3.2.47 Thu Feb 14 14:46:48 2008
+++ ZendEngine2/zend_alloc.c Sun May 11 11:47:01 2008
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_alloc.c,v 1.144.2.3.2.47 2008/02/14 14:46:48 dmitry Exp $ */
+/* $Id: zend_alloc.c,v 1.144.2.3.2.48 2008/05/11 11:47:01 mattwil Exp $ */
#include "zend.h"
#include "zend_alloc.h"
@@ -1115,7 +1115,7 @@
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 {