1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/io-console] Suppress an unused-variable warning

https://github.com/ruby/io-console/commit/ae5c72e481
This commit is contained in:
Nobuyoshi Nakada 2019-12-10 10:44:21 +09:00
parent f9c0fe77c0
commit 2419b3dba6
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -190,6 +190,7 @@ set_rawmode(conmode *t, void *arg)
t->c_lflag |= ISIG|IEXTEN; t->c_lflag |= ISIG|IEXTEN;
} }
#endif #endif
(void)r;
} }
} }