aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Richter <stefanr@s5r6.in-berlin.de>2010-08-05 11:50:32 +0200
committerStefan Richter <stefanr@s5r6.in-berlin.de>2010-09-07 11:18:08 +0200
commitc321058ae33d156ec45ac8fec7355cb57462bff8 (patch)
tree8f89ec236b5065f98432af32cb840c083177170c
parent9d47becf251d8601e834e777d6f7f10eb62ec8dc (diff)
downloadlibraw1394-c321058ae33d156ec45ac8fec7355cb57462bff8.tar.gz
Fix raw1394_iso_stop on firewire-core
The argument to FW_CDEV_IOC_STOP_ISO was missing. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
-rw-r--r--src/fw-iso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fw-iso.c b/src/fw-iso.c
index 5aac9fe..7f2fbc3 100644
--- a/src/fw-iso.c
+++ b/src/fw-iso.c
@@ -588,7 +588,7 @@ void fw_iso_stop(fw_handle_t handle)
struct fw_cdev_stop_iso stop_iso;
stop_iso.handle = 0;
- ioctl(handle->iso.fd, FW_CDEV_IOC_STOP_ISO);
+ ioctl(handle->iso.fd, FW_CDEV_IOC_STOP_ISO, &stop_iso);
handle->iso.head = handle->iso.buffer;
handle->iso.tail = handle->iso.buffer;