summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2004-10-16 23:16:50 +0000
committerAndi Gutmans <andi@php.net>2004-10-16 23:16:50 +0000
commit30ff6d2836f78f03bb0d36adb20751f1a326adcb (patch)
tree8b7fe0bccb9913f1554318c4cd21b3782e9b7839
parentd5eb399b5e804c0635a75dc9cfa84640ce79e53d (diff)
downloadphp-git-30ff6d2836f78f03bb0d36adb20751f1a326adcb.tar.gz
- WS fix to test commit
-rw-r--r--Zend/zend_compile.c2
1 files changed, 1 insertions, 1 deletions
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;
}