cvs: ZendEngine2(PHP_5_3) / zend_alloc.c
[email protected] ("Matt Wilmas")
| Newsgroups | php.zend-engine.cvs |
|---|---|
| Message-ID | <cvsmattwil1210506405@cvsserver> |
mattwil Sun May 11 11:46:45 2008 UTC
Modified files: (Branch: PHP_5_3)
/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.43.2.11&r2=1.144.2.3.2.43.2.12&diff_format=u
Index: ZendEngine2/zend_alloc.c
diff -u ZendEngine2/zend_alloc.c:1.144.2.3.2.43.2.11 ZendEngine2/zend_alloc.c:1.144.2.3.2.43.2.12
--- ZendEngine2/zend_alloc.c:1.144.2.3.2.43.2.11 Thu Feb 14 14:42:00 2008
+++ ZendEngine2/zend_alloc.c Sun May 11 11:46:44 2008
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_alloc.c,v 1.144.2.3.2.43.2.11 2008/02/14 14:42:00 dmitry Exp $ */
+/* $Id: zend_alloc.c,v 1.144.2.3.2.43.2.12 2008/05/11 11:46:44 mattwil Exp $ */
#include "zend.h"
#include "zend_alloc.h"
@@ -1123,7 +1123,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 {