summaryrefslogtreecommitdiff
path: root/tests/nlattr_inet_diag_msg.c
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@strace.io>2021-01-29 08:00:00 +0000
committerDmitry V. Levin <ldv@strace.io>2021-01-29 08:00:00 +0000
commit6c619ef8c2cd079b4295aa9708279ea0ac05900e (patch)
tree7627d010f599f4b361a479431c403b6fc8b9c1d3 /tests/nlattr_inet_diag_msg.c
parent46831aa896bdc4646d46d2395b15648e218a4bb1 (diff)
downloadstrace-6c619ef8c2cd079b4295aa9708279ea0ac05900e.tar.gz
print_fields.h: remove prefix argument from PRINT_FIELD_X macro
* print_fields.h (PRINT_FIELD_X): Remove the first argument, all callers updated.
Diffstat (limited to 'tests/nlattr_inet_diag_msg.c')
-rw-r--r--tests/nlattr_inet_diag_msg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/nlattr_inet_diag_msg.c b/tests/nlattr_inet_diag_msg.c
index a797c8eaf..5899f3046 100644
--- a/tests/nlattr_inet_diag_msg.c
+++ b/tests/nlattr_inet_diag_msg.c
@@ -171,9 +171,9 @@ main(void)
init_inet_diag_msg, print_inet_diag_msg,
INET_DIAG_BBRINFO, pattern, bbr,
printf("{");
- PRINT_FIELD_X("", bbr, bbr_bw_lo);
+ PRINT_FIELD_X(bbr, bbr_bw_lo);
printf(", ");
- PRINT_FIELD_X("", bbr, bbr_bw_hi);
+ PRINT_FIELD_X(bbr, bbr_bw_hi);
printf(", ");
PRINT_FIELD_U("", bbr, bbr_min_rtt);
printf(", ");