summaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorazav <azav@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-06 13:31:20 +0000
committerazav <azav@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-06 13:31:20 +0000
commitdafc803fc59d41ad43a5e3f50aaea4a9dfbfdae1 (patch)
tree155e7223cda2a68c02ffeb38463b38eb660fa037 /io.c
parentd61aa94920a2c942699ce5bd37e2e0100415e6b7 (diff)
downloadruby-dafc803fc59d41ad43a5e3f50aaea4a9dfbfdae1.tar.gz
ruby-dafc803fc59d41ad43a5e3f50aaea4a9dfbfdae1.tar.xz
ruby-dafc803fc59d41ad43a5e3f50aaea4a9dfbfdae1.zip
(pipe_open) [__SYMBIAN32__]: fixed compile time error
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/io.c b/io.c
index 32e75107b..21d775076 100644
--- a/io.c
+++ b/io.c
@@ -4510,6 +4510,8 @@ pipe_open(struct rb_exec_arg *eargp, VALUE prog, const char *modestr, int fmode,
char **args = NULL;
struct rb_exec_arg sarg;
int pair[2], write_pair[2];
+#elif defined(__SYMBIAN32__)
+ struct rb_exec_arg sarg;
#endif
FILE *fp = 0;
int fd = -1;