diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-13 14:30:54 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-13 14:30:54 +0000 |
commit | 9401edfe229e14635be9d480473f63b4cbf0a580 (patch) | |
tree | b6f172c054b85293861ba999715bb367f8e1ecf9 /pack.c | |
parent | bb1338082246be60aec645e3686d34c8ca407eda (diff) |
* io.c, pack.c, ext/syck/rubyext.c, ext/syck/syck.h, missing/isinf.c:
get rid of warnings. fixed: [ruby-core:06247]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'pack.c')
-rw-r--r-- | pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2036,7 +2036,7 @@ uv_to_utf8(buf, uv) rb_raise(rb_eRangeError, "pack(U): value out of range"); } -static const long utf8_limits[] = { +static const unsigned long utf8_limits[] = { 0x0, /* 1 */ 0x80, /* 2 */ 0x800, /* 3 */ |