Module Name:    src
Committed By:   ozaki-r
Date:           Thu May 12 03:01:58 UTC 2016

Modified Files:
        src/sys/compat/svr4_32: svr4_32_sockio.c

Log Message:
Add missing semicolon


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/compat/svr4_32/svr4_32_sockio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/compat/svr4_32/svr4_32_sockio.c
diff -u src/sys/compat/svr4_32/svr4_32_sockio.c:1.22 src/sys/compat/svr4_32/svr4_32_sockio.c:1.23
--- src/sys/compat/svr4_32/svr4_32_sockio.c:1.22	Thu May 12 02:24:16 2016
+++ src/sys/compat/svr4_32/svr4_32_sockio.c	Thu May 12 03:01:57 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: svr4_32_sockio.c,v 1.22 2016/05/12 02:24:16 ozaki-r Exp $	 */
+/*	$NetBSD: svr4_32_sockio.c,v 1.23 2016/05/12 03:01:57 ozaki-r Exp $	 */
 
 /*-
  * Copyright (c) 1995, 2008 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: svr4_32_sockio.c,v 1.22 2016/05/12 02:24:16 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: svr4_32_sockio.c,v 1.23 2016/05/12 03:01:57 ozaki-r Exp $");
 
 #include <sys/param.h>
 #include <sys/proc.h>
@@ -112,7 +112,7 @@ svr4_32_sock_ioctl(file_t *fp, struct lw
 
 			s = pserialize_read_enter();
 			IFNET_READER_FOREACH(ifp)
-				ifnum += svr4_count_ifnum(ifp)
+				ifnum += svr4_count_ifnum(ifp);
 			pserialize_read_exit(s);
 
 			DPRINTF(("SIOCGIFNUM %d\n", ifnum));

Reply via email to