- deprecate HttpRequest::*RawPostData() in favour of ::*Body()
[m6w6/ext-http] / http.c
diff --git a/http.c b/http.c
index f0ffeae62d1648c58c288db26e319cac796eb435..e55b35f67e9cec1641194e8af0e010b163186917 100644 (file)
--- a/http.c
+++ b/http.c
@@ -445,7 +445,7 @@ PHP_MINFO_FUNCTION(http)
                                phpstr_init(&s);
                                
                                FOREACH_HASH_KEYVAL(pos, ht, key, val) {
-                                       phpstr_appendf(&s, "%s (%d), ", key.str, Z_LVAL_PP(val));
+                                       phpstr_appendf(&s, "%s (%ld), ", key.str, Z_LVAL_PP(val));
                                }
                                zend_hash_destroy(ht);
                                FREE_HASHTABLE(ht);