Changeset 114

Show
Ignore:
Timestamp:
07/06/05 17:53:48 (4 years ago)
Author:
zoeloelip
Message:

A compile fix for zend engine 1.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/trunk/eaccelerator.c

    r113 r114  
    14231423  ea_debug_pad(EA_DEBUG TSRMLS_C); 
    14241424  ea_debug_printf(EA_DEBUG, "[%d] store_op_array: %s [scope=%s]\n", getpid(), 
    1425     from->function_name ? from->function_name : "(top)", from->scope ? from->scope->name : "NULL"); 
     1425    from->function_name ? from->function_name : "(top)",  
     1426#ifdef ZEND_ENGINE_2 
     1427    from->scope ? from->scope->name : "NULL"); 
     1428#else 
     1429    "NULL"); 
     1430#endif 
    14261431 
    14271432  if (from->type == ZEND_INTERNAL_FUNCTION) {