From c2fe547076a159b518fc475cd36196da9a6aaf61 Mon Sep 17 00:00:00 2001 From: Jani Taskinen Date: Mon, 5 Nov 2007 13:42:16 +0000 Subject: [PATCH] nuke compile warning --- ext/standard/dns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/dns.c b/ext/standard/dns.c index 414e8eecc5..269e03c1fc 100644 --- a/ext/standard/dns.c +++ b/ext/standard/dns.c @@ -678,7 +678,7 @@ PHP_FUNCTION(dns_get_record) } if (type_param & ~PHP_DNS_ALL && type_param != PHP_DNS_ANY) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type '%d' not supported", type_param); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type '%ld' not supported", type_param); RETURN_FALSE; } -- 2.50.1