mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
nkf.c: add semicolon
* ext/nkf/nkf-utf8/nkf.c (nkf_iconv_t): fix a missing semicolon. reported by Denis Denisov <denji0k AT gmail.com>. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49026 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1db0393eb1
commit
ed316bcfad
2 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
|||
Fri Dec 26 15:09:08 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
Fri Dec 26 15:09:27 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/nkf/nkf-utf8/nkf.c (nkf_iconv_t): fix a missing semicolon.
|
||||
reported by Denis Denisov <denji0k AT gmail.com>.
|
||||
|
||||
* process.c (rb_spawn_process): get rid of usage of uninitialized
|
||||
variable.
|
||||
|
|
|
@ -5490,7 +5490,7 @@ typedef struct nkf_iconv_t {
|
|||
size_t input_buffer_size;
|
||||
char *output_buffer;
|
||||
size_t output_buffer_size;
|
||||
}
|
||||
};
|
||||
|
||||
static nkf_iconv_t
|
||||
nkf_iconv_new(char *tocode, char *fromcode)
|
||||
|
|
Loading…
Reference in a new issue