summaryrefslogtreecommitdiff
path: root/rnn
diff options
context:
space:
mode:
authorMarcin Ślusarz <marcin.slusarz@gmail.com>2014-09-13 20:41:18 +0200
committerMarcin Ślusarz <marcin.slusarz@gmail.com>2014-09-13 20:53:54 +0200
commit95d0c5124a0d5f84b1db879423196ffb0fac811a (patch)
tree6d0354392abe66616e2406cb2ac6c4772500178f /rnn
parent577625fed09d5f19cbe4e68ea8fa06401032efda (diff)
demmt: fix raw ioctl pre output (fd and id were swapped)
Diffstat (limited to 'rnn')
-rw-r--r--rnn/demmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rnn/demmt.c b/rnn/demmt.c
index 1440477e..b962186e 100644
--- a/rnn/demmt.c
+++ b/rnn/demmt.c
@@ -1016,7 +1016,7 @@ void demmt_ioctl_pre(struct mmt_ioctl_pre *ctl, void *state, struct mmt_memory_d
if (print_raw)
{
mmt_log("ioctl pre 0x%02x (0x%08x), fd: %d, dir: %2s, size: %4d",
- nr, ctl->fd, ctl->id, dir_desc[dir], size);
+ nr, ctl->id, ctl->fd, dir_desc[dir], size);
if (size != ctl->data.len)
mmt_log_cont(", data.len: %d", ctl->data.len);