Changeset 553 for trunk/xcache.c

Show
Ignore:
Timestamp:
05/05/2008 11:40:43 AM (7 months ago)
Author:
moo
Message:

better readability

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/xcache.c

    r551 r553  
    11071107    zend_op_array *op_array; 
    11081108    int old_constinfo_cnt, old_funcinfo_cnt, old_classinfo_cnt; 
    1109     int i; 
    11101109    zend_bool catched = 0; 
    11111110 
     
    12551254    /* {{{ find inherited classes that should be early-binding */ 
    12561255    php->have_early_binding = 0; 
    1257     for (i = 0; i < php->classinfo_cnt; i ++) { 
    1258         php->classinfos[i].oplineno = -1; 
     1256    { 
     1257        int i; 
     1258        for (i = 0; i < php->classinfo_cnt; i ++) { 
     1259            php->classinfos[i].oplineno = -1; 
     1260        } 
    12591261    } 
    12601262