From: Ben Pfaff Date: Thu, 20 Nov 2008 17:53:27 +0000 (-0800) Subject: Use "%zu" to print size_t, not "%"PRIu16. X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=dd373c4f79ecdd78b1b4f2afab86f0ba9bc5eeb4;p=sliver-openvswitch.git Use "%zu" to print size_t, not "%"PRIu16. --- diff --git a/lib/ofp-print.c b/lib/ofp-print.c index 96dd4c6af..c3c1c711f 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -342,8 +342,7 @@ ofp_print_action(struct ds *string, const struct ofp_action_header *ah, const struct openflow_action *act = &of_actions[type]; if ((len < act->min_size) || (len > act->max_size)) { ds_put_format(string, - "***action %"PRIu16" wrong length: %"PRIu16"***\n", - type, len); + "***action %"PRIu16" wrong length: %zu***\n", type, len); return -1; } }