summaryrefslogtreecommitdiff
path: root/mailbox/file_stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'mailbox/file_stream.c')
-rw-r--r--mailbox/file_stream.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mailbox/file_stream.c b/mailbox/file_stream.c
index c97075f5f..7dc8c90fa 100644
--- a/mailbox/file_stream.c
+++ b/mailbox/file_stream.c
@@ -192,7 +192,7 @@ static int
fd_ioctl (struct _mu_stream *str, int code, void *ptr)
{
struct _mu_file_stream *fstr = (struct _mu_file_stream *) str;
- mu_transport_t (*ptrans)[2];
+ mu_transport_t *ptrans;
switch (code)
{
@@ -200,8 +200,8 @@ fd_ioctl (struct _mu_stream *str, int code, void *ptr)
if (!ptr)
return EINVAL;
ptrans = ptr;
- (*ptrans)[0] = (mu_transport_t) fstr->fd;
- (*ptrans)[1] = NULL;
+ ptrans[0] = (mu_transport_t) fstr->fd;
+ ptrans[1] = NULL;
break;
default:

Return to:

Send suggestions and report system problems to the System administrator.