From 83ef58f264964f86e7276fdb146c108cc0d6abc0 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 10 Sep 2019 17:27:07 +0900 Subject: [ruby/io-console] Suppress yet another warning on Windows https://github.com/ruby/io-console/commit/4e17c90788 --- ext/io/console/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/io') diff --git a/ext/io/console/console.c b/ext/io/console/console.c index c82817560f..40f1c861e1 100644 --- a/ext/io/console/console.c +++ b/ext/io/console/console.c @@ -298,6 +298,7 @@ ttymode(VALUE io, VALUE (*func)(VALUE), VALUE farg, void (*setter)(conmode *, vo return result; } +#if !defined _WIN32 struct ttymode_callback_args { VALUE (*func)(VALUE, VALUE); VALUE io; @@ -311,7 +312,6 @@ ttymode_callback(VALUE args) return argp->func(argp->io, argp->farg); } -#if !defined _WIN32 static VALUE ttymode_with_io(VALUE io, VALUE (*func)(VALUE, VALUE), VALUE farg, void (*setter)(conmode *, void *), void *arg) { -- cgit v1.2.3