From 2036edccf5114a8e862445f95466f516b08389c5 Mon Sep 17 00:00:00 2001 From: fumiama Date: Mon, 13 Dec 2021 15:42:04 +0800 Subject: [PATCH] edit kv sz --- dict.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dict.h b/dict.h index ef2867c..33268b3 100644 --- a/dict.h +++ b/dict.h @@ -3,8 +3,8 @@ #include -#define DICTKEYSZ 64 -#define DICTDATSZ 64 +#define DICTKEYSZ 127 +#define DICTDATSZ 127 struct DICT { char key[DICTKEYSZ]; char data[DICTDATSZ];