mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
fix func argument type
This commit is contained in:
parent
c429c74be9
commit
c6a35115bc
@ -53,7 +53,7 @@ PHP_FUNCTION(unixtojd)
|
||||
Convert Julian Day to UNIX timestamp */
|
||||
PHP_FUNCTION(jdtounix)
|
||||
{
|
||||
long uday;
|
||||
zend_long uday;
|
||||
|
||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &uday) == FAILURE) {
|
||||
return;
|
||||
|
@ -104,7 +104,7 @@ Since:
|
||||
PHP_FUNCTION(dom_nodelist_item)
|
||||
{
|
||||
zval *id;
|
||||
long index;
|
||||
zend_long index;
|
||||
int ret;
|
||||
dom_object *intern;
|
||||
xmlNodePtr itemnode = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user