| Marcus Boerger 2005-11-01, 6:55 pm |
| helly Tue Nov 1 15:42:04 2005 EDT
Modified files:
/ZendEngine2 zend_compile.h
Log:
- Get rid of several wanrings
http://cvs.php.net/diff.php/ZendEng...6&r2=1.327&ty=u
Index: ZendEngine2/zend_compile.h
diff -u ZendEngine2/zend_compile.h:1.326 ZendEngine2/zend_compile.h:1.327
--- ZendEngine2/zend_compile.h:1.326 Thu Oct 20 03:23:57 2005
+++ ZendEngine2/zend_compile.h Tue Nov 1 15:41:59 2005
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_compile.h,v 1.326 2005/10/20 07:23:57 dmitry Exp $ */
+/* $Id: zend_compile.h,v 1.327 2005/11/01 20:41:59 helly Exp $ */
#ifndef ZEND_COMPILE_H
#define ZEND_COMPILE_H
@@ -241,7 +241,7 @@
struct _zend_module_entry *module;
} zend_internal_function;
-#define ZEND_FN_SCOPE_NAME(function) ((function) && (function)->common.scope ? (function)->common.scope->name : EMPTY_STR)
+#define ZEND_FN_SCOPE_NAME(function) ((function) && (function)->common.scope ? (function)->common.scope->name : (char*)EMPTY_STR)
typedef union _zend_function {
zend_uchar type; /* MUST be the first element of this struct! */
|