summaryrefslogtreecommitdiff
path: root/shared/bin.c
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-05-25 19:03:24 +0200
committerlonkaars <loek@pipeframe.xyz>2022-05-25 19:03:24 +0200
commit734e5ea7d05c0cebf219cff78c6b0794f4cbe9ae (patch)
tree9ca6b17a7e6b6a65c0162a3a02c6d6a4cf0d02dd /shared/bin.c
parent87900d6787f8e0af8d37cc313c4e0510ef0b1bf8 (diff)
`make format`
Diffstat (limited to 'shared/bin.c')
-rw-r--r--shared/bin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/bin.c b/shared/bin.c
index dac8415..e9592e6 100644
--- a/shared/bin.c
+++ b/shared/bin.c
@@ -73,7 +73,7 @@ w2_s_bin *w2_bin_s_cat(w2_s_bin *a, w2_s_bin *b) {
uint8_t data[a->bytes + b->bytes];
memcpy(data, a->data, a->bytes);
memcpy(data + a->bytes, b->data, b->bytes);
- w2_s_bin* c = w2_bin_s_alloc(a->bytes + b->bytes, data);
+ w2_s_bin *c = w2_bin_s_alloc(a->bytes + b->bytes, data);
free(a);
free(b);
return c;