From 79559685282bb14a78ae0a3b75af637e519cfee9 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Fri, 12 Nov 2010 15:18:52 +0100 Subject: [PATCH] iptables-test: Fix build failure tools/iptables-test.c:786:5: error: cast from pointer to integer of different size tools/iptables-test.c:788:5: error: cast from pointer to integer of different size --- tools/iptables-test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/iptables-test.c b/tools/iptables-test.c index e8e9228..753847a 100644 --- a/tools/iptables-test.c +++ b/tools/iptables-test.c @@ -781,11 +781,11 @@ static void connman_iptables_dump_hook(struct connman_iptables *table) printf("hooks: \n"); for (i = 0; i < NF_INET_NUMHOOKS; i++) { if ((table->info->valid_hooks & (1 << i))) - printf("%s entry 0x%x underflow 0x%x (0x%x)\n", + printf("%s entry %p underflow %p (%#x)\n", hooknames[i], - (unsigned int)table->blob_entries->entrytable + + table->blob_entries->entrytable + table->info->hook_entry[i], - (unsigned int)table->blob_entries->entrytable + + table->blob_entries->entrytable + table->info->underflow[i], table->info->underflow[i]); } -- 2.7.4