From a80f7d1ab66cb2385a67ad1860f4860be6955a6d Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Thu, 22 Dec 2011 15:08:39 +0000 Subject: [PATCH 17/21] network/lib6/asapi_04: Cast pointer arithmetic to proper integer Signed-off-by: Markos Chandras --- testcases/network/lib6/asapi_04.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/testcases/network/lib6/asapi_04.c b/testcases/network/lib6/asapi_04.c index 9f7efbd..9c6ad3b 100644 --- a/testcases/network/lib6/asapi_04.c +++ b/testcases/network/lib6/asapi_04.c @@ -337,7 +337,7 @@ static int client(int prot, int sfd) if (*p != 0xa5) { tst_resm(TFAIL, "IPV6_CHECKSUM corrupt data " "0x%02x != 0xa5 at offset %d in packet", - *p, p - rpbuf); + *p, (int)(p - rpbuf)); rv = 0; break; } @@ -532,4 +532,4 @@ cleanup(void) TEST_CLEANUP; } -int TST_TOTAL = PTCOUNT + CSCOUNT; \ No newline at end of file +int TST_TOTAL = PTCOUNT + CSCOUNT; -- 1.7.1