From 42f3f8dae0a86667cfc9a76ef763cd83f7f05d85 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 25 Apr 2019 22:13:10 +0200 Subject: [PATCH] mesh: remove unused fields from mesh_transport_key_and_virtual_address_iterator_t --- test/mesh/mesh_transport.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/mesh/mesh_transport.c b/test/mesh/mesh_transport.c index 20484e382..5e17a19e4 100644 --- a/test/mesh/mesh_transport.c +++ b/test/mesh/mesh_transport.c @@ -74,8 +74,6 @@ typedef struct { // address - might be virtual uint16_t dst; // key info - uint8_t akf; - uint8_t aid; } mesh_transport_key_and_virtual_address_iterator_t; static void mesh_transport_key_and_virtual_address_iterator_init(mesh_transport_key_and_virtual_address_iterator_t *it, @@ -84,8 +82,6 @@ static void mesh_transport_key_and_virtual_address_iterator_init(mesh_transport_ printf("KEY_INIT: dst %04x, akf %x, aid %x\n", dst, akf, aid); // config it->dst = dst; - it->aid = aid; - it->akf = akf; // init elements it->key = NULL; it->address = NULL;