From: Ben Pfaff Date: Tue, 24 May 2011 18:04:22 +0000 (-0700) Subject: test-csum: Avoid "cast increases required alignment of target type" warning. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7b3e606b2f6054bc20518d64100ae501b3e6ef3;p=openvswitch test-csum: Avoid "cast increases required alignment of target type" warning. Casting a character pointer to uint16_t * or uint32_t * provokes this warning on sparc. There is no actual problem, because all of the accesses to data occurs through calls to the get_unaligned_*() functions, so this commit suppresses the warning by using "void *" as an intermediate type. --- diff --git a/tests/test-csum.c b/tests/test-csum.c index 81f54b80..86de4309 100644 --- a/tests/test-csum.c +++ b/tests/test-csum.c @@ -140,8 +140,9 @@ main(void) int i; for (tc = test_cases; tc < &test_cases[ARRAY_SIZE(test_cases)]; tc++) { - const ovs_be16 *data16 = (OVS_FORCE const ovs_be16 *) tc->data; - const ovs_be32 *data32 = (OVS_FORCE const ovs_be32 *) tc->data; + const void *data = tc->data; + const ovs_be16 *data16 = (OVS_FORCE const ovs_be16 *) data; + const ovs_be32 *data32 = (OVS_FORCE const ovs_be32 *) data; uint32_t partial; /* Test csum(). */