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>
This commit is contained in:
Stefan Richter 2010-08-05 11:50:32 +02:00
parent 9d47becf25
commit c321058ae3
1 changed files with 1 additions and 1 deletions

View File

@ -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;