diff options
Diffstat (limited to 'src/packet.c')
| -rw-r--r-- | src/packet.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/packet.c b/src/packet.c index 3582020..c5ece05 100644 --- a/src/packet.c +++ b/src/packet.c @@ -25,7 +25,8 @@ struct packet *create_packet(enum packet_type type, uintptr_t addr, size_t size) return pkt; } -struct packet *create_packet_with(enum packet_type type, uintptr_t addr, size_t size, void *data) +struct packet *create_packet_with(enum packet_type type, uintptr_t addr, + size_t size, void *data) { struct packet *pkt = calloc(1, sizeof(struct packet)); if (!pkt) |
