summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--include/ruby/encoding.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6b791af0c..57081a4a3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Sep 22 11:17:51 2008 URABE Shyouhei <shyouhei@ruby-lang.org>
+
+ * include/ruby/encoding.h (enum): ISO C forbids comma at end of
+ enumerator list
+
Mon Sep 22 10:15:24 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* LEGAL: updated file names removed and added. [ruby-dev:36426]
diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h
index f2f7ba19b..2c7f105ec 100644
--- a/include/ruby/encoding.h
+++ b/include/ruby/encoding.h
@@ -203,7 +203,7 @@ typedef enum {
econv_source_buffer_empty,
econv_finished,
econv_after_output,
- econv_incomplete_input,
+ econv_incomplete_input
} rb_econv_result_t;
typedef struct rb_econv_t rb_econv_t;