diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-11-15 01:45:23 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-11-15 01:45:23 +0000 |
commit | ee3738618395c14d3f17a8477000467b20bc49e2 (patch) | |
tree | e4159308089f2d0da03e188ebd8d9dc3503a4032 /ext/mime_magic | |
parent | ca332dfc964710736c772c99c022031c29d89e05 (diff) | |
download | php-git-ee3738618395c14d3f17a8477000467b20bc49e2.tar.gz |
Use C comments
Diffstat (limited to 'ext/mime_magic')
-rw-r--r-- | ext/mime_magic/mime_magic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mime_magic/mime_magic.c b/ext/mime_magic/mime_magic.c index 247e8cca33..474182d181 100644 --- a/ext/mime_magic/mime_magic.c +++ b/ext/mime_magic/mime_magic.c @@ -342,7 +342,7 @@ static int apprentice(void) char *fname; magic_server_config_rec *conf = &mime_global; - fname = conf->magicfile; // todo cwd? + fname = conf->magicfile; /* todo cwd? */ f = fopen(fname, "r"); if (f == NULL) { php_error(E_WARNING, |