summaryrefslogtreecommitdiff
path: root/ext/date
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2006-09-05 12:42:25 +0000
committerNuno Lopes <nlopess@php.net>2006-09-05 12:42:25 +0000
commit573f153e06854633754d0c8a081a82d6c9fe578c (patch)
treeea2a95adbcb81f6bf9f5682a6f3bed8ece6b4736 /ext/date
parent07b26e4e5f12134a46f2e6cdc2f7a057dd4af9ed (diff)
downloadphp-git-573f153e06854633754d0c8a081a82d6c9fe578c.tar.gz
MFB: int->zend_bool where possible
Diffstat (limited to 'ext/date')
-rw-r--r--ext/date/php_date.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c
index a6377d3a7a..4c10161013 100644
--- a/ext/date/php_date.c
+++ b/ext/date/php_date.c
@@ -1494,7 +1494,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;