summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--thread.c3
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 72c323bd4c..5319467ff3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Feb 25 11:31:13 2007 Koichi Sasada <ko1@atdot.net>
+
+ * thread.c (rb_thread_run): fix to ANSI style.
+
Sun Feb 25 11:09:16 2007 Minero Aoki <aamine@loveruby.net>
* bootstraptest/runner.rb: show source code in error message.
diff --git a/thread.c b/thread.c
index 45a6d57556..9ef165673f 100644
--- a/thread.c
+++ b/thread.c
@@ -962,8 +962,7 @@ rb_thread_wakeup(VALUE thread)
*/
VALUE
-rb_thread_run(thread)
- VALUE thread;
+rb_thread_run(VALUE thread)
{
rb_thread_wakeup(thread);
rb_thread_schedule();