svn commit: r323425 - stable/11/usr.sbin/bhyve

Ryan Libby rlibby at FreeBSD.org
Mon Sep 11 07:21:36 UTC 2017


Author: rlibby
Date: Mon Sep 11 07:21:34 2017
New Revision: 323425
URL: https://svnweb.freebsd.org/changeset/base/323425

Log:
  MFC r321668:
  
    bhyve/pci_e82545.c: squelch gcc warning for noreturn procedure

Modified:
  stable/11/usr.sbin/bhyve/pci_e82545.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/usr.sbin/bhyve/pci_e82545.c
==============================================================================
--- stable/11/usr.sbin/bhyve/pci_e82545.c	Mon Sep 11 04:22:25 2017	(r323424)
+++ stable/11/usr.sbin/bhyve/pci_e82545.c	Mon Sep 11 07:21:34 2017	(r323425)
@@ -1405,7 +1405,7 @@ e82545_tx_run(struct e82545_softc *sc)
 	    sc->esc_TDH, sc->esc_TDHr, sc->esc_TDT);
 }
 
-static void *
+static _Noreturn void *
 e82545_tx_thread(void *param)
 {
 	struct e82545_softc *sc = param;


More information about the svn-src-all mailing list