alignment

This commit is contained in:
orignal 2014-11-26 21:42:14 -05:00
parent eb6b04d6c2
commit a8c08563f1
2 changed files with 2 additions and 1 deletions

View file

@ -45,8 +45,8 @@ namespace stream
struct Packet
{
uint8_t buf[MAX_PACKET_SIZE];
size_t len, offset;
uint8_t buf[MAX_PACKET_SIZE];
int numResendAttempts;
Packet (): len (0), offset (0), numResendAttempts (0) {};