mirror of
https://github.com/meshtastic/firmware.git
synced 2026-09-21 22:05:26 -04:00
Fix type to ensure correct alignment; saves 4B per entry (#8465)
This commit is contained in:
1 parent
b6830a68a0
commit
f045ca2303
1 file changed
+1
-1
@@ -17,7 +17,7 @@ typedef struct PacketCacheEntry {
|
||||
uint8_t encrypted : 1; // Payload is encrypted
|
||||
uint8_t has_metadata : 1; // Payload includes PacketCacheMetadata
|
||||
uint8_t : 6; // Reserved for future use
|
||||
uint16_t : 8; // Reserved for future use
|
||||
uint8_t : 8; // Reserved for future use
|
||||
};
|
||||
};
|
||||
} PacketCacheEntry;
|
||||
|
||||
Reference in new issue
Block a user