summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-09 18:16:38 +0000
committerwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-09 18:16:38 +0000
commit9db01e060fca9eb7765632f8e49154b7dcc18281 (patch)
tree5015a1d094bb7d05e7d99911a7d012b8d3415a1b
parentba1ebe744b626eb2edcecf5072b228c239c8efdd (diff)
downloadruby-9db01e060fca9eb7765632f8e49154b7dcc18281.tar.gz
ruby-9db01e060fca9eb7765632f8e49154b7dcc18281.tar.xz
ruby-9db01e060fca9eb7765632f8e49154b7dcc18281.zip
Pendantic change to remove surplus comma.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@24006 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog2
-rw-r--r--node.h2
-rw-r--r--version.h2
3 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3c87f6a3d..f6cc90ec1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@ Thu Jul 9 11:22:00 2009 Kirk Haines <khaines@ruby-lang.org>
* gc.c: Fixes warning: passing argument 1 of 'add_freelist' makes pointer from integer without a cast
+ * node.h: Remove surplus comma
+
Mon Jun 8 12:46:00 2009 Kirk Haines <khaines@ruby-lang.org>
* lib/soap/mimemessage.rb: Fixed a typo -- conent -> content
diff --git a/node.h b/node.h
index 476a82688..38e47a1b2 100644
--- a/node.h
+++ b/node.h
@@ -395,7 +395,7 @@ enum rb_thread_status {
THREAD_TO_KILL,
THREAD_RUNNABLE,
THREAD_STOPPED,
- THREAD_KILLED,
+ THREAD_KILLED
};
typedef struct rb_thread *rb_thread_t;
diff --git a/version.h b/version.h
index 7dd3da354..cf4a41f23 100644
--- a/version.h
+++ b/version.h
@@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2009-06-08"
#define RUBY_VERSION_CODE 186
#define RUBY_RELEASE_CODE 20090608
-#define RUBY_PATCHLEVEL 371
+#define RUBY_PATCHLEVEL 372
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8