aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-25 00:47:17 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-25 00:47:17 +0000
commit1bbe442f80990e5d002ff6663a80d2dc43ae31d4 (patch)
tree1eae7ccb8047d454f83425e3dd55f856db038ed7
parent7419b76f8902d7d02f90580b7ad26929cf525d59 (diff)
downloadruby-1bbe442f80990e5d002ff6663a80d2dc43ae31d4.tar.gz
* id_table.c: fix typo. [ci skip][fix GH-1031] Patch @davydovanton
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51932 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--id_table.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5df4f35ce9..80dce3b996 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Sep 25 09:47:12 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
+
+ * id_table.c: fix typo. [ci skip][fix GH-1031] Patch @davydovanton
+
Fri Sep 25 07:54:05 2015 Rei Odaira <Rei.Odaira@gmail.com>
* test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_lock): skip
diff --git a/id_table.c b/id_table.c
index 64475efe1c..6676127d28 100644
--- a/id_table.c
+++ b/id_table.c
@@ -696,7 +696,7 @@ list_id_table_delete(struct list_id_table *tbl, ID id)
list_delete_index(tbl, key, i); \
values = TABLE_VALUES(tbl); \
num = tbl->num; \
- i--; /* redo smae index */ \
+ i--; /* redo same index */ \
break; \
} \
} while (0)