diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-10-20 02:21:25 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-10-20 02:21:25 +0000 |
commit | 24793840b24a0e3807cb5b52fe9b35480cc2cc78 (patch) | |
tree | 7b0c96712f86b8272633d1c426aa9d55d2f110ba /main/php_ini.c | |
parent | 26f7af25ba5220321a55ccd3fa5f85cecfa85de3 (diff) | |
download | php-git-24793840b24a0e3807cb5b52fe9b35480cc2cc78.tar.gz |
Fixed unused variable warning on *nix.
Diffstat (limited to 'main/php_ini.c')
-rw-r--r-- | main/php_ini.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/php_ini.c b/main/php_ini.c index 2a413fbaab..f4d2d9a0f1 100644 --- a/main/php_ini.c +++ b/main/php_ini.c @@ -300,7 +300,9 @@ int php_init_config() } else { char *default_location; static const char paths_separator[] = { ZEND_PATHS_SEPARATOR, 0 }; +#ifdef PHP_WIN32 char *reg_location; +#endif php_ini_search_path = (char *) emalloc(MAXPATHLEN * 4 + strlen(env_location) + 3 + 1); free_ini_search_path = 1; |