From ac4f9724a87a8ee1c423b6349ec344a906fd7e53 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: http://svn.ruby-lang.org/repos/ruby/trunk@24813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/st.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/ruby') diff --git a/include/ruby/st.h b/include/ruby/st.h index f9c572e10..412a0129c 100644 --- a/include/ruby/st.h +++ b/include/ruby/st.h @@ -107,7 +107,7 @@ int st_numcmp(st_data_t, st_data_t); st_index_t st_numhash(st_data_t); int st_strcasecmp(const char *s1, const char *s2); int st_strncasecmp(const char *s1, const char *s2, size_t n); -size_t st_memsize(st_table *); +size_t st_memsize(const st_table *); #if defined(__cplusplus) #if 0 -- cgit