From fb231d60de319173bc30dc7b027e256f49452878 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Wed, 22 Jan 2014 14:14:58 +0200 Subject: [PATCH] unit/sdp: Remove extra zero table entry It is enough to have one zero table entry at the end of the table. --- unit/test-sdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit/test-sdp.c b/unit/test-sdp.c index 6d699e2f8..9b8234307 100644 --- a/unit/test-sdp.c +++ b/unit/test-sdp.c @@ -72,7 +72,7 @@ struct test_data { #define define_test(name, _mtu, args...) \ do { \ const struct sdp_pdu pdus[] = { \ - args, { }, { } \ + args, { } \ }; \ static struct test_data data; \ data.mtu = _mtu; \ -- 2.47.3