fix func argument type

This commit is contained in:
Anatol Belski 2014-08-25 23:50:30 +02:00
parent c429c74be9
commit c6a35115bc
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;