Changeset 265 for trunk

Show
Ignore:
Timestamp:
07/10/2007 15:21:21 (17 months ago)
Author:
indeyets
Message:

changing spaces to tabs

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ext/php/phpext.c

    r264 r265  
    237237                                        char *colon = end - 1; 
    238238                                        while (colon >= ptr && *colon != ':') { 
    239                                             colon--; 
     239                                                colon--; 
    240240                                        } 
    241241 
     
    277277                                        char *colon = end - 1; 
    278278                                        while (colon >= ptr && *colon != ':') { 
    279                                             colon--; 
     279                                                colon--; 
    280280                                        } 
    281281 
     
    377377                case IS_BOOL: 
    378378                { 
    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)); 
    381381                } 
    382382                break;