summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2003-06-04 05:45:54 +0000
committerfoobar <sniper@php.net>2003-06-04 05:45:54 +0000
commitfde80076ec2ce5e1a2e6629b59d31956d3cb55db (patch)
tree7928b4b18d574152dc94278e0957504c9423cd4e
parentb2ee53106f0932e6e77aa98c5f53e72a0e0bd04c (diff)
downloadphp-git-fde80076ec2ce5e1a2e6629b59d31956d3cb55db.tar.gz
No C++ comments and extra tabs.
-rw-r--r--ext/standard/dir.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/dir.c b/ext/standard/dir.c
index cfa792f477..7a2cb4028d 100644
--- a/ext/standard/dir.c
+++ b/ext/standard/dir.c
@@ -401,10 +401,10 @@ PHP_FUNCTION(glob)
}
#ifndef GLOB_NOMATCH
- // now catch the FreeBSD style of "no matches"
+ /* now catch the FreeBSD style of "no matches" */
if (!globbuf.gl_pathc) {
- array_init(return_value);
- return;
+ array_init(return_value);
+ return;
}
#endif