diff options
| author | Anatol Belski <ab@php.net> | 2014-08-25 19:24:55 +0200 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2014-08-25 19:24:55 +0200 |
| commit | c3e3c98ec666812daaaca896cf5ef758a8a6df14 (patch) | |
| tree | d82a76de5c8d117d1cf2dcca19bb30a283621870 /ext/date/lib/timelib.c | |
| parent | 0cf2dbdf58645b52cb6582b1b2571c5cd9e9e6b3 (diff) | |
| download | php-git-c3e3c98ec666812daaaca896cf5ef758a8a6df14.tar.gz | |
master renames phase 1
Diffstat (limited to 'ext/date/lib/timelib.c')
| -rw-r--r-- | ext/date/lib/timelib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/date/lib/timelib.c b/ext/date/lib/timelib.c index ad25f8b5c6..26bf8f5686 100644 --- a/ext/date/lib/timelib.c +++ b/ext/date/lib/timelib.c @@ -176,7 +176,7 @@ void timelib_error_container_dtor(timelib_error_container *errors) free(errors); } -php_int_t timelib_date_to_int(timelib_time *d, int *error) +zend_long timelib_date_to_int(timelib_time *d, int *error) { timelib_sll ts; @@ -191,7 +191,7 @@ php_int_t timelib_date_to_int(timelib_time *d, int *error) if (error) { *error = 0; } - return (php_int_t) d->sse; + return (zend_long) d->sse; } void timelib_decimal_hour_to_hms(double h, int *hour, int *min, int *sec) |
