Skip to content

Commit

Permalink
Fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
strazzere committed Aug 22, 2022
1 parent 226da1f commit f5a19c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Templates/sdkpacket.bt
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ typedef enum <unsigned short> {

typedef struct {
packet_magic magic <format=hex>;
unsigned char type; <comment="packet type">;
unsigned char source; <comment="sender">;
unsigned int length; <comment="length of payload">;
unsigned int destination; <comment="intended recipient">;
unsigned char type <comment="packet type">;
unsigned char source <comment="sender">;
unsigned int length <comment="length of payload">;
unsigned int destination <comment="intended recipient">;
unsigned char data[length] <comment="payload">;
} sdk_packet;

Expand Down

0 comments on commit f5a19c6

Please sign in to comment.