diff options
| author | Ha Thach <[email protected]> | 2023-03-24 16:48:33 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-03-24 16:48:33 +0700 |
| commit | 59cbfbbdbef5d10782d3912925684d2a37fd0f30 (patch) | |
| tree | 44762f47c8008abf8c61b66087e0f93fc0fc4f3c /test/fuzz/net_fuzz.cc | |
| parent | f640163ee96f0a6a85b9a50f34c41cfb19f0c5bf (diff) | |
| parent | 033627ee4118b5015f1d31b88b8c4fcbad14292d (diff) | |
Merge pull request #1971 from MattMills/class_net_net_device_mac_address_shouldnt_be_consts
Update net_device.h to make MAC addresses not const.
Diffstat (limited to 'test/fuzz/net_fuzz.cc')
| -rw-r--r-- | test/fuzz/net_fuzz.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzz/net_fuzz.cc b/test/fuzz/net_fuzz.cc index 3158e74ef..63cd1ac98 100644 --- a/test/fuzz/net_fuzz.cc +++ b/test/fuzz/net_fuzz.cc @@ -67,7 +67,7 @@ void tud_network_init_cb(void) { // client must provide this: 48-bit MAC address // TODO removed later since it is not part of tinyusb stack -const uint8_t tud_network_mac_address[6] = {0}; +uint8_t tud_network_mac_address[6] = {0}; //------------- NCM -------------// |
