diff options
| author | foobar <sniper@php.net> | 2005-04-28 14:23:57 +0000 |
|---|---|---|
| committer | foobar <sniper@php.net> | 2005-04-28 14:23:57 +0000 |
| commit | 8c2cda12517a9b0a728628f3e0eaea2fb41fda8a (patch) | |
| tree | d6338a691ecf12a8b6e2ebc3a75cfb7fededf025 /sapi | |
| parent | b0d523660552100761dd0fbe78eb60edf50f6aff (diff) | |
| download | php-git-8c2cda12517a9b0a728628f3e0eaea2fb41fda8a.tar.gz | |
int != long
Diffstat (limited to 'sapi')
| -rw-r--r-- | sapi/cgi/cgi_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index a3394a6b66..e16d158e70 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -482,7 +482,7 @@ static void sapi_cgi_register_variables(zval *track_vars_array TSRMLS_DC) static void sapi_cgi_log_message(char *message) { #if PHP_FASTCGI - int logging = 1; + long logging = 1; TSRMLS_FETCH(); if (cfg_get_long("fastcgi.logging", &logging) == FAILURE) { @@ -979,7 +979,7 @@ int main(int argc, char *argv[]) int fcgi_fd = 0; FCGX_Request request; #ifdef PHP_WIN32 - int impersonate = 0; + long impersonate = 0; #else int status = 0; #endif |
