diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-01 16:22:49 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-01 16:22:49 +0000 |
| commit | b73a3ed763380d77df5f735472c0cf589a186f5d (patch) | |
| tree | 7ece75f0de59fd63b1263145479927001796a1c3 /transcode.c | |
| parent | 05cf9175f40ae029961ecff4b8c9eae271ca4b00 (diff) | |
| download | ruby-b73a3ed763380d77df5f735472c0cf589a186f5d.tar.gz ruby-b73a3ed763380d77df5f735472c0cf589a186f5d.tar.xz ruby-b73a3ed763380d77df5f735472c0cf589a186f5d.zip | |
* transcode_data.h (BYTE_LOOKUP): change to uintptr_t array.
(BYTE_LOOKUP_BASE): follow the type change.
(BYTE_LOOKUP_INFO): ditto.
(PType): ditto.
(rb_transcoding): ditto.
* tool/transcode-tblgen.rb: follow the type change.
* transcode.c: ditto.
* enc/trans/newline.trans: ditto.
* enc/trans/iso2022.trans: ditto.
* enc/trans/utf_16_32.trans: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'transcode.c')
| -rw-r--r-- | transcode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transcode.c b/transcode.c index a67565e3e..f4409a39a 100644 --- a/transcode.c +++ b/transcode.c @@ -513,7 +513,7 @@ transcode_restartable0(const unsigned char **in_pos, unsigned char **out_pos, SUSPEND(econv_source_buffer_empty, 5); } next_byte = (unsigned char)*in_p++; - next_table = (const BYTE_LOOKUP *)next_info; + next_table = next_info; goto follow_byte; case ZERObt: /* drop input */ continue; |
