summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Wolffelaar <jeroen@php.net>2001-08-04 21:37:43 +0000
committerJeroen van Wolffelaar <jeroen@php.net>2001-08-04 21:37:43 +0000
commitfcf57d371dcda2356c9c8ba4de9be47c06fc5636 (patch)
tree8484fbcabcd8a551ea49eb1ef41e6672902f8dd8
parent2b17cd1982f3756387dd1012f547fb3adf154615 (diff)
downloadphp-git-fcf57d371dcda2356c9c8ba4de9be47c06fc5636.tar.gz
Layout: revert accidentel joining of lines
-rw-r--r--ext/standard/filestat.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c
index d377442d2d..ef4b3708a0 100644
--- a/ext/standard/filestat.c
+++ b/ext/standard/filestat.c
@@ -115,7 +115,8 @@ PHP_RINIT_FUNCTION(filestat)
}
PHP_RSHUTDOWN_FUNCTION(filestat) {
- if (BG(CurrentStatFile)) { efree (BG(CurrentStatFile));
+ if (BG(CurrentStatFile)) {
+ efree (BG(CurrentStatFile));
}
return SUCCESS;
}
@@ -692,7 +693,7 @@ static void php_stat(const char *filename, php_stat_len filename_length, int typ
stat_sb = &BG(lsb);
#endif
/* FALLTHROUGH */
- case FS_STAT: /* stat */
+ case FS_STAT:
if (array_init(return_value) == FAILURE) {
RETURN_FALSE;
}