aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--vm_exec.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2e26e528af..ccaf18aa08 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Nov 15 22:41:57 2012 Koichi Sasada <ko1@atdot.net>
+
+ * vm_exec.h (GENTRY): GENTRY should be pointer size.
+ A patch by yoshidam (Yoshida Masato) [Bug #7332].
+
Thu Nov 15 13:20:00 2012 Zachary Scott <zachary@zacharyscott.net>
* man/erb.1: Fix grammar and copyright dates
diff --git a/vm_exec.h b/vm_exec.h
index 75797e02c1..410e3a5130 100644
--- a/vm_exec.h
+++ b/vm_exec.h
@@ -14,7 +14,7 @@
typedef long OFFSET;
typedef unsigned long lindex_t;
-typedef rb_num_t GENTRY;
+typedef VALUE GENTRY;
typedef rb_iseq_t *ISEQ;
#ifdef __GCC__