summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-20 06:14:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-20 06:14:49 +0000
commitd92efa3c0b8b995f5bd95ec4099db81a97480632 (patch)
treec7aa043c7f9339196fc855eb90122e98dead4578 /io.c
parentae2921ae67e849f8d28c0a3ae170d38c6ac36d03 (diff)
* io.c (copy_stream_func): suppress warnings.
* thread_pthread.c (add_signal_thread_list): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16098 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/io.c b/io.c
index 8f640e2fcd..22b82bba8d 100644
--- a/io.c
+++ b/io.c
@@ -6517,7 +6517,9 @@ static VALUE
copy_stream_func(void *arg)
{
struct copy_stream_struct *stp = (struct copy_stream_struct *)arg;
+#ifdef USE_SENDFILE
int ret;
+#endif
#ifdef USE_SENDFILE
ret = copy_stream_sendfile(stp);
@@ -6527,7 +6529,9 @@ copy_stream_func(void *arg)
copy_stream_read_write(stp);
+#ifdef USE_SENDFILE
finish:
+#endif
return Qnil;
}