summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-06 13:12:24 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-06 13:12:24 +0000
commit9ff10a20b5b28cb1f44e19ce5a32b07fb2382b7a (patch)
tree3227f51fab131bd88fb8d12089ea033e6e7ee69f
parente796e95ec84b85c4885a15b6b6b46c6689d31444 (diff)
* pack.c: fix the prototype of rb_big2ulong_pack.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26828 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--pack.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 23f993c04c..35f4be3d0c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Mar 6 22:07:09 2010 Tanaka Akira <akr@fsij.org>
+
+ * pack.c: fix the prototype of rb_big2ulong_pack.
+
Sat Mar 6 13:45:37 2010 Yusuke Endoh <mame@tsg.ne.jp>
* io.c (rb_io_s_write, rb_io_s_binwrite): delete File#write and
diff --git a/pack.c b/pack.c
index c3346a4b71..0a551f6881 100644
--- a/pack.c
+++ b/pack.c
@@ -266,7 +266,7 @@ TOKEN_PASTE(swap,x)(xtype z) \
# define VTOHD(x,y) rb_vtohd(x)
#endif
-unsigned long rb_big2ulong_pack(VALUE x);
+VALUE rb_big2ulong_pack(VALUE x);
static unsigned long
num2i32(VALUE x)