Changeset 265 for trunk/ext/php
- Timestamp:
- 07/10/2007 15:21:21 (17 months ago)
- Files:
-
- 1 modified
-
trunk/ext/php/phpext.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ext/php/phpext.c
r264 r265 237 237 char *colon = end - 1; 238 238 while (colon >= ptr && *colon != ':') { 239 colon--;239 colon--; 240 240 } 241 241 … … 277 277 char *colon = end - 1; 278 278 while (colon >= ptr && *colon != ':') { 279 colon--;279 colon--; 280 280 } 281 281 … … 377 377 case IS_BOOL: 378 378 { 379 char *bool_s = Z_BVAL_P(data) ? "true" : "false";380 syck_emit_scalar(e, "boolean", scalar_none, 0, 0, 0, bool_s, strlen(bool_s));379 char *bool_s = Z_BVAL_P(data) ? "true" : "false"; 380 syck_emit_scalar(e, "boolean", scalar_none, 0, 0, 0, bool_s, strlen(bool_s)); 381 381 } 382 382 break;