diff options
| author | 2000-09-13 23:24:53 +0000 | |
|---|---|---|
| committer | 2000-09-13 23:24:53 +0000 | |
| commit | aa2c8b55b3f91767cc7d47b56d4f539ff7dc5019 (patch) | |
| tree | c258c53ebd27453d9197d673340c5455822a6941 | |
| parent | Work around compiler warnings for int/ptr casts. (diff) | |
Fix raw1394_start_iso_write() which uses wrong variable.
git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@39 53a565d1-3bb7-0310-b661-cf11e63c67ab
Diffstat (limited to '')
| -rw-r--r-- | src/readwrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/readwrite.c b/src/readwrite.c index 333db8a..a983c30 100644 --- a/src/readwrite.c +++ b/src/readwrite.c @@ -105,7 +105,7 @@ int raw1394_start_iso_write(struct raw1394_handle *handle, unsigned int channel, req->type = RAW1394_REQ_ISO_SEND; req->generation = handle->generation; - req->tag = tag; + req->tag = rawtag; req->address = ((__u64)channel << 48) | speed; req->misc = (tag << 16) | sy; |
