summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/os/aio.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/uts/common/os/aio.c')
-rw-r--r--usr/src/uts/common/os/aio.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr/src/uts/common/os/aio.c b/usr/src/uts/common/os/aio.c
index cc53f43911..35e0a4dd63 100644
--- a/usr/src/uts/common/os/aio.c
+++ b/usr/src/uts/common/os/aio.c
@@ -25,6 +25,10 @@
*/
/*
+ * Copyright (c) 2018, Joyent, Inc.
+ */
+
+/*
* Kernel asynchronous I/O.
* This is only for raw devices now (as of Nov. 1993).
*/
@@ -304,7 +308,7 @@ kaio(
offset_t off;
- rvp->r_vals = 0;
+ rvp->r_vals = 0;
#if defined(_LITTLE_ENDIAN)
off = ((u_offset_t)uap[5] << 32) | (u_offset_t)uap[4];
#else