From 06a9baf4d9f3d00f12f6b1dc7cb93467ea635a9d Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Thu, 23 Sep 2010 03:49:26 +0000 Subject: [PATCH] Missed to check this one in the last commit --- ext/standard/var.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/var.c b/ext/standard/var.c index cf5c94f2a0..c2bdcbb52e 100644 --- a/ext/standard/var.c +++ b/ext/standard/var.c @@ -401,7 +401,7 @@ static int php_object_element_export(zval **zv TSRMLS_DC, int num_args, va_list smart_str_appends(buf, prop_name); smart_str_appendc(buf, '\''); } else { - smart_str_append_long(buf, hash_key->h); + smart_str_append_long(buf, (long) hash_key->h); } smart_str_appendl(buf, " => ", 4); php_var_export_ex(zv, level + 2, buf TSRMLS_CC); -- 2.40.0