Module Name:    src
Committed By:   msaitoh
Date:           Fri Jan 11 08:30:19 UTC 2019

Modified Files:
        src/sys/arch/playstation2/dev: emac3.c

Log Message:
 Add missing semicolon.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/playstation2/dev/emac3.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/arch/playstation2/dev/emac3.c
diff -u src/sys/arch/playstation2/dev/emac3.c:1.11 src/sys/arch/playstation2/dev/emac3.c:1.12
--- src/sys/arch/playstation2/dev/emac3.c:1.11	Sun Apr  3 10:03:04 2016
+++ src/sys/arch/playstation2/dev/emac3.c	Fri Jan 11 08:30:19 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: emac3.c,v 1.11 2016/04/03 10:03:04 martin Exp $	*/
+/*	$NetBSD: emac3.c,v 1.12 2019/01/11 08:30:19 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: emac3.c,v 1.11 2016/04/03 10:03:04 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: emac3.c,v 1.12 2019/01/11 08:30:19 msaitoh Exp $");
 
 #include "debug_playstation2.h"
 
@@ -248,7 +248,7 @@ allmulti:
 		    ETHER_ADDR_LEN) != 0)
 			goto allmulti;
 
-		ETHER_NEXT_MULTI(step, enm)
+		ETHER_NEXT_MULTI(step, enm);
 	}
 
 	/* XXX always multicast promiscuous mode. XXX use hash table.. */

Reply via email to