From: Andi Gutmans Date: Sat, 16 Oct 2004 23:16:50 +0000 (+0000) Subject: - WS fix to test commit X-Git-Tag: PRE_NEW_VM_GEN_PATCH~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30ff6d2836f78f03bb0d36adb20751f1a326adcb;p=php - WS fix to test commit --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index d18c2c1726..e660a32364 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -181,7 +181,7 @@ ZEND_API char *zend_set_compiled_filename(char *new_compiled_filename TSRMLS_DC) char **pp, *p; int length = strlen(new_compiled_filename); - if (zend_hash_find(&CG(filenames_table), new_compiled_filename, length+1, (void **) &pp)==SUCCESS) { + if (zend_hash_find(&CG(filenames_table), new_compiled_filename, length+1, (void **) &pp) == SUCCESS) { CG(compiled_filename) = *pp; return *pp; }