From f0923164d8a32064cec53386f48dc0c340b9a15c Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 19 Aug 2023 19:35:24 +0900 Subject: [PATCH] Align the type of `num_entries` to `st_table` --- marshal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/marshal.c b/marshal.c index d1218af9ad..ec38c2188a 100644 --- a/marshal.c +++ b/marshal.c @@ -173,7 +173,7 @@ struct dump_arg { st_table *data; st_table *compat_tbl; st_table *encodings; - unsigned long num_entries; + st_index_t num_entries; }; struct dump_call_arg {