From 78ab4258ff3836ac40a8d5df00156bfe3bb1d638 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 9 Sep 2009 04:10:42 +0000 Subject: * st.c (st_free_table): constified. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'st.c') diff --git a/st.c b/st.c index 837fa97fe4..9326e6f1a5 100644 --- a/st.c +++ b/st.c @@ -256,7 +256,7 @@ st_free_table(st_table *table) } size_t -st_memsize(st_table *table) +st_memsize(const st_table *table) { if (table->entries_packed) { return table->num_bins * sizeof (void *) + sizeof(st_table); -- cgit v1.2.3