Module Name:    src
Committed By:   riastradh
Date:           Sun Dec  1 16:22:10 UTC 2019

Modified Files:
        src/sys/dev/gpib: mt.c

Log Message:
Mark unreachable branch with __unreachable() to fix i386/ALL build.


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/sys/dev/gpib/mt.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/dev/gpib/mt.c
diff -u src/sys/dev/gpib/mt.c:1.33 src/sys/dev/gpib/mt.c:1.34
--- src/sys/dev/gpib/mt.c:1.33	Tue Nov 12 13:17:44 2019
+++ src/sys/dev/gpib/mt.c	Sun Dec  1 16:22:10 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: mt.c,v 1.33 2019/11/12 13:17:44 msaitoh Exp $ */
+/*	$NetBSD: mt.c,v 1.34 2019/12/01 16:22:10 riastradh Exp $ */
 
 /*-
  * Copyright (c) 1996-2003 The NetBSD Foundation, Inc.
@@ -75,7 +75,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mt.c,v 1.33 2019/11/12 13:17:44 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mt.c,v 1.34 2019/12/01 16:22:10 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -729,6 +729,7 @@ mtstart(struct mt_softc *sc)
 				    mtstart_callout, sc);
 				return;
 			}
+			__unreachable();
 
 		    case MTRESET:
 			/*

Reply via email to