summaryrefslogtreecommitdiff
path: root/marshal.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-08-19 19:35:24 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-08-20 20:12:44 +0900
commitf0923164d8a32064cec53386f48dc0c340b9a15c (patch)
treedcec7913fc3626f36a055b7cc1ef39faa9ba403b /marshal.c
parent7c226291d344c29236d51c604f885af05e7f1add (diff)
Align the type of `num_entries` to `st_table`
Diffstat (limited to 'marshal.c')
-rw-r--r--marshal.c2
1 files changed, 1 insertions, 1 deletions
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 {