svn commit: r305425 - head/sys/arm/arm

Mark Johnston markj at FreeBSD.org
Mon Sep 5 16:04:42 UTC 2016


Author: markj
Date: Mon Sep  5 16:04:40 2016
New Revision: 305425
URL: https://svnweb.freebsd.org/changeset/base/305425

Log:
  Remove an unreachable return state from ARM's minidumpsys().
  
  Submitted by:	Dominik Ermel <der at semihalf.com>
  MFC after:	3 days
  Differential Revision:	https://reviews.freebsd.org/D7787

Modified:
  head/sys/arm/arm/minidump_machdep.c

Modified: head/sys/arm/arm/minidump_machdep.c
==============================================================================
--- head/sys/arm/arm/minidump_machdep.c	Mon Sep  5 15:50:40 2016	(r305424)
+++ head/sys/arm/arm/minidump_machdep.c	Mon Sep  5 16:04:40 2016	(r305425)
@@ -369,7 +369,6 @@ fail:
 	else
 		printf("\n** DUMP FAILED (ERROR %d) **\n", error);
 	return (error);
-	return (0);
 }
 
 void


More information about the svn-src-head mailing list