|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-08-24 13:12 UTC] laruence@php.net
-Assigned To:
+Assigned To: ab
[2015-08-24 13:19 UTC] laruence@php.net
-Assigned To: ab
+Assigned To: derick
[2015-08-24 13:31 UTC] ab@php.net
[2020-04-16 12:49 UTC] nikic@php.net
-Status: Assigned
+Status: Closed
[2020-04-16 12:49 UTC] nikic@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 13:00:01 2025 UTC |
Description: ------------ While compiling under OS X, the compiler warns us about a probably unwanted type conversion: php-7.0.0RC1/ext/date/php_date.c:2196:6: warning: absolute value function 'abs' given an argument of type 'long long' but has parameter of type 'int' which may cause truncation of value [-Wabsolute-value] abs(utc_offset / 60), ^ php-7.0.0RC1/ext/date/php_date.c:2196:6: note: use function 'llabs' instead abs(utc_offset / 60), ^~~ llabs given input is long long, we probably want output to be long long too or we might have a year 2038 problem (https://en.wikipedia.org/wiki/Year_2038_problem) Test script: --------------- ./configure