From: Anatol Belski Date: Tue, 5 Mar 2013 19:24:58 +0000 (+0100) Subject: fix ANSI C90 compat X-Git-Tag: php-5.5.0beta1~42^2~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfb8b9153b752e5ed22ed2a621c5dc9f77df008d;p=php fix ANSI C90 compat --- diff --git a/ZendAccelerator.c b/ZendAccelerator.c index 9690bb8122..06469f5c02 100644 --- a/ZendAccelerator.c +++ b/ZendAccelerator.c @@ -698,6 +698,9 @@ static accel_time_t zend_get_file_handle_timestamp_win(zend_file_handle *file_ha static accel_time_t zend_get_file_handle_timestamp(zend_file_handle *file_handle TSRMLS_DC) { struct stat statbuf; +#ifdef ZEND_WIN32 + accel_time_t res; +#endif if (sapi_module.get_stat && !EG(opline_ptr) && @@ -711,8 +714,6 @@ static accel_time_t zend_get_file_handle_timestamp(zend_file_handle *file_handle } #ifdef ZEND_WIN32 - accel_time_t res; - res = zend_get_file_handle_timestamp_win(file_handle); if (res) { return res;