diff options
| author | Nuno Lopes <nlopess@php.net> | 2006-09-05 12:39:20 +0000 |
|---|---|---|
| committer | Nuno Lopes <nlopess@php.net> | 2006-09-05 12:39:20 +0000 |
| commit | 4cff5db8f4c1ac2524a0c9e6ffe8928c4007b8f9 (patch) | |
| tree | 473657413f0ae42773e50506b5a4090c5c098fce /ext/date/php_date.c | |
| parent | 3ec9141f9177b09fdefa6fd7602d4ceb0290eff2 (diff) | |
| download | php-git-4cff5db8f4c1ac2524a0c9e6ffe8928c4007b8f9.tar.gz | |
int->zend_bool where possible
Diffstat (limited to 'ext/date/php_date.c')
| -rw-r--r-- | ext/date/php_date.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 996dd84f48..3408a18654 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -1366,7 +1366,7 @@ PHP_FUNCTION(time) PHP_FUNCTION(localtime) { long timestamp = (long)time(NULL); - int associative = 0; + zend_bool associative = 0; timelib_tzinfo *tzi; timelib_time *ts; |
