diff options
| author | bouyer <bouyer@NetBSD.org> | 2011-01-20 11:17:58 +0000 |
|---|---|---|
| committer | bouyer <bouyer@NetBSD.org> | 2011-01-20 11:17:58 +0000 |
| commit | e50fbcf37c0c5d7c6bf6ff4475e6327f7e1536f8 (patch) | |
| tree | 32709105b06da2e606d8a39366d51b07675f1908 /common/include/prop/prop_array.h | |
| parent | f777d6fe12b539b38f233f4e4f76e267f37c34ae (diff) | |
prop_*_copyout takes an object as second parameter, not a pointer to object.
Diffstat (limited to 'common/include/prop/prop_array.h')
| -rw-r--r-- | common/include/prop/prop_array.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/include/prop/prop_array.h b/common/include/prop/prop_array.h index 6c7ed8bd16c..35702193919 100644 --- a/common/include/prop/prop_array.h +++ b/common/include/prop/prop_array.h @@ -1,4 +1,4 @@ -/* $NetBSD: prop_array.h,v 1.10 2011/01/19 20:34:23 bouyer Exp $ */ +/* $NetBSD: prop_array.h,v 1.11 2011/01/20 11:17:58 bouyer Exp $ */ /*- * Copyright (c) 2006, 2009 The NetBSD Foundation, Inc. @@ -77,7 +77,7 @@ bool prop_array_recv_syscall(const struct plistref *, prop_array_t *); #elif defined(_KERNEL) int prop_array_copyin(const struct plistref *, prop_array_t *); -int prop_array_copyout(struct plistref *, prop_array_t *); +int prop_array_copyout(struct plistref *, prop_array_t); int prop_array_copyin_ioctl(const struct plistref *, const u_long, prop_array_t *); int prop_array_copyout_ioctl(struct plistref *, const u_long, |
