diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-11-17 16:16:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-11-17 16:16:10 +0000 |
commit | d8c7c06510ad17efb6a9bf8d5c8762f362fbae05 (patch) | |
tree | b8777b30f9dcb4e26ebde6a70d998c5e8117a0bd /sys/dev | |
parent | 80900626c190a9dbdc0d7f6a483f395192600e41 (diff) |
oops, spotted by pat as always
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/firmload.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/firmload.c b/sys/dev/firmload.c index 49ba7d2ad9b..9b53209ef0c 100644 --- a/sys/dev/firmload.c +++ b/sys/dev/firmload.c @@ -1,4 +1,4 @@ -/* $OpenBSD: firmload.c,v 1.2 2004/11/17 15:14:57 deraadt Exp $ */ +/* $OpenBSD: firmload.c,v 1.3 2004/11/17 16:16:09 deraadt Exp $ */ /* * Copyright (c) 2004 Theo de Raadt <deraadt@openbsd.org> @@ -62,7 +62,7 @@ loadfirmware(const char *name, u_char **bufp, size_t *buflen) goto fail; } - iov.iov_base = ptr, + iov.iov_base = ptr; iov.iov_len = va.va_size; uio.uio_iov = &iov; uio.uio_iovcnt = 1; |