We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c429c74 commit c6a3511Copy full SHA for c6a3511
ext/calendar/cal_unix.c
@@ -53,7 +53,7 @@ PHP_FUNCTION(unixtojd)
53
Convert Julian Day to UNIX timestamp */
54
PHP_FUNCTION(jdtounix)
55
{
56
- long uday;
+ zend_long uday;
57
58
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &uday) == FAILURE) {
59
return;
ext/dom/nodelist.c
@@ -104,7 +104,7 @@ URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-84
104
PHP_FUNCTION(dom_nodelist_item)
105
106
zval *id;
107
- long index;
+ zend_long index;
108
int ret;
109
dom_object *intern;
110
xmlNodePtr itemnode = NULL;
0 commit comments