summaryrefslogtreecommitdiffstats
path: root/include/ruby
diff options
context:
space:
mode:
authorduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-28 10:08:46 +0000
committerduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-28 10:08:46 +0000
commit5f7ee3083f0ddb6616d6d56c18478344fcc2803a (patch)
tree1cee3d2d71b3f9f60dc3856b1ff8196f80f0d0b5 /include/ruby
parenta5e3db1a939c1a90e2bbc21af4f05481f06e0bd5 (diff)
downloadruby-5f7ee3083f0ddb6616d6d56c18478344fcc2803a.tar.gz
ruby-5f7ee3083f0ddb6616d6d56c18478344fcc2803a.tar.xz
ruby-5f7ee3083f0ddb6616d6d56c18478344fcc2803a.zip
include/ruby/st.h: aligned prototype of st_hash_uint32 with function
definition (fixing compiling problem on cygwin) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25132 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
-rw-r--r--include/ruby/st.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/st.h b/include/ruby/st.h
index d491957ba..76f240d1c 100644
--- a/include/ruby/st.h
+++ b/include/ruby/st.h
@@ -109,7 +109,7 @@ 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(const st_table *);
st_index_t st_hash(const void *ptr, size_t len, st_index_t h);
-st_index_t st_hash_uint32(st_index_t h, unsigned int i);
+st_index_t st_hash_uint32(st_index_t h, uint32_t i);
st_index_t st_hash_uint(st_index_t h, st_index_t i);
st_index_t st_hash_end(st_index_t h);
st_index_t st_hash_start(st_index_t h);