Skip to content

Commit 33fd554

Browse files
committed
Fixed merge due to changed return type in API
1 parent 39a67f8 commit 33fd554

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/date/php_date.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3490,7 +3490,7 @@ static bool timezone_initialize(php_timezone_obj *tzobj, const char *tz, size_t
34903490
php_error_docref(NULL, E_WARNING, "Unknown or bad timezone (%s)", orig_tz);
34913491
timelib_free(dummy_t->tz_abbr);
34923492
efree(dummy_t);
3493-
return FAILURE;
3493+
return false;
34943494
}
34953495
if (not_found) {
34963496
php_error_docref(NULL, E_WARNING, "Unknown or bad timezone (%s)", orig_tz);

0 commit comments

Comments
 (0)