From c321058ae33d156ec45ac8fec7355cb57462bff8 Mon Sep 17 00:00:00 2001 From: Stefan Richter Date: Thu, 5 Aug 2010 11:50:32 +0200 Subject: [PATCH] Fix raw1394_iso_stop on firewire-core The argument to FW_CDEV_IOC_STOP_ISO was missing. Signed-off-by: Stefan Richter --- src/fw-iso.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;