summaryrefslogtreecommitdiff
path: root/common/include
diff options
context:
space:
mode:
authorbouyer <bouyer@NetBSD.org>2011-01-20 11:17:58 +0000
committerbouyer <bouyer@NetBSD.org>2011-01-20 11:17:58 +0000
commite50fbcf37c0c5d7c6bf6ff4475e6327f7e1536f8 (patch)
tree32709105b06da2e606d8a39366d51b07675f1908 /common/include
parentf777d6fe12b539b38f233f4e4f76e267f37c34ae (diff)
prop_*_copyout takes an object as second parameter, not a pointer to object.
Diffstat (limited to 'common/include')
-rw-r--r--common/include/prop/prop_array.h4
-rw-r--r--common/include/prop/prop_dictionary.h4
2 files changed, 4 insertions, 4 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,
diff --git a/common/include/prop/prop_dictionary.h b/common/include/prop/prop_dictionary.h
index ab3cf982ce0..3b8672f6387 100644
--- a/common/include/prop/prop_dictionary.h
+++ b/common/include/prop/prop_dictionary.h
@@ -1,4 +1,4 @@
-/* $NetBSD: prop_dictionary.h,v 1.11 2011/01/19 20:34:23 bouyer Exp $ */
+/* $NetBSD: prop_dictionary.h,v 1.12 2011/01/20 11:17:58 bouyer Exp $ */
/*-
* Copyright (c) 2006, 2009 The NetBSD Foundation, Inc.
@@ -101,7 +101,7 @@ bool prop_dictionary_recv_syscall(const struct plistref *,
int prop_dictionary_copyin(const struct plistref *,
prop_dictionary_t *);
int prop_dictionary_copyout(struct plistref *,
- prop_dictionary_t *);
+ prop_dictionary_t);
int prop_dictionary_copyin_ioctl(const struct plistref *,
const u_long,
prop_dictionary_t *);