diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2013-01-07 13:19:52 -0800 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2013-01-07 13:19:52 -0800 |
commit | 31a9d40c89da89ebd8c57efccf99d7dac7a9f9a1 (patch) | |
tree | 0be0bfce8b331ad82b5bb26100c3be965a3df384 /unit/test-sdp.c | |
parent | bf0b30d964f6a48ac67e4bc56b159c2b38d5b64c (diff) | |
download | bluez-31a9d40c89da89ebd8c57efccf99d7dac7a9f9a1.tar.gz |
unit: Remove the unused pdu_id value from the SDP tests
Diffstat (limited to 'unit/test-sdp.c')
-rw-r--r-- | unit/test-sdp.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/unit/test-sdp.c b/unit/test-sdp.c index 45cb39eae..315a5cd52 100644 --- a/unit/test-sdp.c +++ b/unit/test-sdp.c @@ -41,7 +41,6 @@ struct sdp_pdu { bool valid; - uint8_t pdu_id; const void *raw_data; size_t raw_size; uint8_t cont_len; @@ -57,7 +56,6 @@ struct test_data { #define raw_pdu(args...) \ { \ .valid = true, \ - .pdu_id = 0x00, \ .raw_data = x_pdu(args), \ .raw_size = sizeof(x_pdu(args)), \ } @@ -65,7 +63,6 @@ struct test_data { #define raw_pdu_cont(cont, args...) \ { \ .valid = true, \ - .pdu_id = 0x00, \ .raw_data = x_pdu(args), \ .raw_size = sizeof(x_pdu(args)), \ .cont_len = cont, \ |