mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 14:25:26 +00:00
odp-util: always output recirc_id in hex
The match is in hex, this makes it more consistent. Signed-off-by: Joe Stringer <joestringer@nicira.com> Signed-off-by: Andy Zhou <azhou@nicira.com>
This commit is contained in:
@@ -495,7 +495,7 @@ format_mpls(struct ds *ds, const struct ovs_key_mpls *mpls_key,
|
||||
static void
|
||||
format_odp_recirc_action(struct ds *ds, uint32_t recirc_id)
|
||||
{
|
||||
ds_put_format(ds, "recirc(%"PRIu32")", recirc_id);
|
||||
ds_put_format(ds, "recirc(%#"PRIx32")", recirc_id);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user