Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/usermode/usermode Add missing semicolon.



details:   https://anonhg.NetBSD.org/src/rev/aa7116075aa0
branches:  trunk
changeset: 455676:aa7116075aa0
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Wed Apr 10 03:39:34 2019 +0000

description:
Add missing semicolon.

diffstat:

 sys/arch/usermode/usermode/copy.c |  20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diffs (85 lines):

diff -r 7a2e84b863b7 -r aa7116075aa0 sys/arch/usermode/usermode/copy.c
--- a/sys/arch/usermode/usermode/copy.c Wed Apr 10 00:49:49 2019 +0000
+++ b/sys/arch/usermode/usermode/copy.c Wed Apr 10 03:39:34 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: copy.c,v 1.9 2019/04/06 03:06:28 thorpej Exp $ */
+/* $NetBSD: copy.c,v 1.10 2019/04/10 03:39:34 msaitoh Exp $ */
 
 /*-
  * Copyright (c) 2007 Jared D. McNeill <jmcneill%invisible.ca@localhost>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: copy.c,v 1.9 2019/04/06 03:06:28 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: copy.c,v 1.10 2019/04/10 03:39:34 msaitoh Exp $");
 
 #define        __UFETCHSTORE_PRIVATE
 #define        __UCAS_PRIVATE
@@ -114,21 +114,21 @@
 _ufetch_8(const uint8_t *uaddr, uint8_t *valp)
 {
        *valp = *uaddr;
-       return 0
+       return 0;
 }
 
 int
 _ufetch_16(const uint16_t *uaddr, uint16_t *valp)
 {
        *valp = *uaddr;
-       return 0
+       return 0;
 }
 
 int
 _ufetch_32(const uint32_t *uaddr, uint32_t *valp)
 {
        *valp = *uaddr;
-       return 0
+       return 0;
 }
 
 #ifdef _LP64
@@ -136,7 +136,7 @@
 _ufetch_64(const uint64_t *uaddr, uint64_t *valp)
 {
        *valp = *uaddr;
-       return 0
+       return 0;
 }
 #endif /* _LP64 */
 
@@ -144,21 +144,21 @@
 _ustore_8(uint8_t *uaddr, uint8_t val)
 {
        *uaddr = val;
-       return 0
+       return 0;
 }
 
 int
 _ustore_16(uint16_t *uaddr, uint16_t val)
 {
        *uaddr = val;
-       return 0
+       return 0;
 }
 
 int
 _ustore_32(uint32_t *uaddr, uint32_t val)
 {
        *uaddr = val;
-       return 0
+       return 0;
 }
 
 #ifdef _LP64
@@ -166,6 +166,6 @@
 _ustore_64(uint64_t *uaddr, uint64_t val)
 {
        *uaddr = val;
-       return 0
+       return 0;
 }
 #endif /* _LP64 */



Home | Main Index | Thread Index | Old Index