aboutsummaryrefslogtreecommitdiffstats
path: root/tests/obscure.c
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2024-06-28 00:06:40 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2024-06-28 00:52:08 +0300
commitebad5ad23dc6893b0fb75ba04aa961a25a532b5f (patch)
treec025946d4248b46aceae3e15c19efd29b2d12af2 /tests/obscure.c
parent28bb6070e64f25aa6ff64f81b59a7f52e12d4092 (diff)
Finished hash_map implementation
TODO: fix that one linked list function
Diffstat (limited to 'tests/obscure.c')
-rw-r--r--tests/obscure.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/obscure.c b/tests/obscure.c
index 190ff09..7b6f1fd 100644
--- a/tests/obscure.c
+++ b/tests/obscure.c
@@ -5,7 +5,7 @@
typedef char* packet_t;
-int main() {
+int main(void) {
packet_t *data = array_new(packet_t, 0);
packet_t el_0 = malloc(128);
memset(el_0, 42, 128);