Use "%zu" to print size_t, not "%"PRIu16.
authorBen Pfaff <blp@nicira.com>
Thu, 20 Nov 2008 17:53:27 +0000 (09:53 -0800)
committerBen Pfaff <blp@nicira.com>
Thu, 20 Nov 2008 17:53:27 +0000 (09:53 -0800)
lib/ofp-print.c

index 96dd4c6..c3c1c71 100644 (file)
@@ -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;
         }
     }