From 425696848891d9b83749d76ccf11ee4abf0092b5 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 6 Jul 2009 00:23:36 +0000 Subject: * proc.c (proc_hash): use long. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23969 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- proc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'proc.c') diff --git a/proc.c b/proc.c index 5ee01f76b5..fe8fd4967b 100644 --- a/proc.c +++ b/proc.c @@ -751,13 +751,13 @@ proc_eq(VALUE self, VALUE other) static VALUE proc_hash(VALUE self) { - int hash; + long hash; rb_proc_t *proc; GetProcPtr(self, proc); hash = (long)proc->block.iseq; hash ^= (long)proc->envval; hash ^= (long)proc->block.lfp >> 16; - return INT2FIX(hash); + return LONG2FIX(hash); } /* -- cgit v1.2.3