diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-19 16:33:30 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-19 16:33:30 +0000 |
| commit | d1a2837eec29ffcae5088b58a72d91dff3bf9f17 (patch) | |
| tree | 6468681866a8f3760870cf6e8ef7eb07c0e0200e /io.c | |
| parent | d4a35e14b336d7c27a73a511476c382c3f2ef4de (diff) | |
| download | ruby-d1a2837eec29ffcae5088b58a72d91dff3bf9f17.tar.gz ruby-d1a2837eec29ffcae5088b58a72d91dff3bf9f17.tar.xz ruby-d1a2837eec29ffcae5088b58a72d91dff3bf9f17.zip | |
* io.c (lineno): typo fix(FIX2INT -> INT2FIX).
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5507 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
| -rw-r--r-- | io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -114,7 +114,7 @@ struct timeval rb_time_interval _((VALUE)); static VALUE filename, current_file; static int gets_lineno; static int init_p = 0, next_p = 0; -static VALUE lineno = FIX2INT(0); +static VALUE lineno = INT2FIX(0); #ifdef _STDIO_USES_IOSTREAM /* GNU libc */ # ifdef _IO_fpos_t |
