Signed-off-by: Nicolas Morey-Chaisemartin <[email protected]>
---
Note: the new checkpatch does not seem to be happy with PRIu32 put this way 
(CamelCase and no space in concatenated strings) but I kept it homogeneous with 
the other printfs

 test/validation/odp_packet.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/validation/odp_packet.c b/test/validation/odp_packet.c
index a363438..63493ec 100644
--- a/test/validation/odp_packet.c
+++ b/test/validation/odp_packet.c
@@ -62,7 +62,8 @@ static int packet_testsuite_init(void)
        if (udat == NULL || udat_size != sizeof(struct udata_struct))
                return -1;
        odp_pool_print(packet_pool);
-       printf("about to init udata at addr %p size %d\n", udat, udat_size);
+       printf("about to init udata at addr %p size %"PRIu32"\n",
+              udat, udat_size);
        memcpy(udat, &test_packet_udata, sizeof(struct udata_struct));
        printf("udata set in test_packet\n");
 
_______________________________________________
lng-odp mailing list
[email protected]
https://lists.linaro.org/mailman/listinfo/lng-odp

Reply via email to