More linting in src/network

This commit is contained in:
Jasmine Iwanek
2023-08-21 20:23:41 -04:00
parent ef41b7c3bf
commit 0398ec450a
5 changed files with 17 additions and 16 deletions

View File

@@ -66,7 +66,7 @@ mcast_index(const void *dst)
uint32_t crc = 0xffffffffL;
int carry;
uint8_t b;
const uint8_t *ep = (uint8_t *) dst;
const uint8_t *ep = (const uint8_t *) dst;
for (int8_t i = 6; --i >= 0;) {
b = *ep++;