summaryrefslogtreecommitdiff
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
commit71dd79212880ddf4f99451befde26737f0cefa2c (patch)
tree155e7223cda2a68c02ffeb38463b38eb660fa037
parentcbee174e29d0f1c0be1bc48a79b571a8bac90312 (diff)
(pipe_open) [__SYMBIAN32__]: fixed compile time error
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--io.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/io.c b/io.c
index 32e75107b3..21d7750769 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;