Changeset 229 for eaccelerator/trunk/ea_dasm.c
- Timestamp:
- 07/19/06 11:52:59 (2 years ago)
- Files:
-
- eaccelerator/trunk/ea_dasm.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ea_dasm.c
r228 r229 147 147 break; 148 148 case IS_BOOL: 149 if ( v->value.lval) {149 if (Z_LVAL_P(v)) { 150 150 str = emalloc(sizeof("bool(true)")); 151 151 strcpy(str, "bool(true)"); … … 168 168 break; 169 169 case IS_CONSTANT: 170 size = Z_STRLEN (v) + 1 + sizeof("constant('')");170 size = Z_STRLEN_P(v) + 1 + sizeof("constant('')"); 171 171 str = emalloc(size); 172 172 snprintf(str, size, "constant('%s')", Z_STRVAL_P(v));