diff options
| author | Alexander Kabaev <kan@FreeBSD.org> | 2004-07-28 06:21:53 +0000 |
|---|---|---|
| committer | Alexander Kabaev <kan@FreeBSD.org> | 2004-07-28 06:21:53 +0000 |
| commit | eec256de797ad952d7431e420d2367722d8cbf38 (patch) | |
| tree | fa20bec983805e312b0374afcf51d79ab4e27e9d /sys/dev/firewire | |
| parent | 3bdee39ecb0bff68e5dadb0fd01f394366770a86 (diff) | |
Notes
Diffstat (limited to 'sys/dev/firewire')
| -rw-r--r-- | sys/dev/firewire/firewire.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/firewire/firewire.c b/sys/dev/firewire/firewire.c index 9bd5dd66631a..f2b7164eaf11 100644 --- a/sys/dev/firewire/firewire.c +++ b/sys/dev/firewire/firewire.c @@ -1760,7 +1760,7 @@ fw_rcv_copy(struct fw_rcv_buf *rb) /* Copy header */ p = (u_char *)&rb->xfer->recv.hdr; bcopy(rb->vec->iov_base, p, tinfo->hdr_len); - (u_char *)rb->vec->iov_base += tinfo->hdr_len; + rb->vec->iov_base = (u_char *)rb->vec->iov_base + tinfo->hdr_len; rb->vec->iov_len -= tinfo->hdr_len; /* Copy payload */ |
