Skip to content

Commit 98a2f52

Browse files
committed
orte: add missing break statement
This seems like an obvious typo: insert a missing "break" statement so that we don't fall through to the next case. Fixes CIDs 1362756 and 1362764. Signed-off-by: Jeff Squyres <[email protected]>
1 parent 72a618a commit 98a2f52

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

orte/util/error_strings.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* University of Stuttgart. All rights reserved.
1010
* Copyright (c) 2004-2005 The Regents of the University of California.
1111
* All rights reserved.
12-
* Copyright (c) 2010-2011 Cisco Systems, Inc. All rights reserved.
12+
* Copyright (c) 2010-2016 Cisco Systems, Inc. All rights reserved.
1313
* Copyright (c) 2011-2013 Los Alamos National Security, LLC.
1414
* All rights reserved.
1515
* Copyright (c) 2014 Intel, Inc. All rights reserved.
@@ -236,6 +236,7 @@ int orte_err2str(int errnum, const char **errmsg)
236236
break;
237237
case ORTE_ERR_DEBUGGER_RELEASE:
238238
retval = "Debugger release";
239+
break;
239240
default:
240241
if (orte_report_silent_errors) {
241242
retval = "Unknown error";

0 commit comments

Comments
 (0)