Skip to content

Commit ea5649d

Browse files
author
Ralph Castain
authored
Merge pull request #3665 from rhc54/topic/trivial
Add missing constant to error-strings
2 parents 88b5ec3 + acd60a2 commit ea5649d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

opal/runtime/opal_init.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,9 @@ opal_err2str(int errnum, const char **errmsg)
299299
case OPAL_ERR_FILE_ALERT:
300300
retval = "File alert - proc may have stalled";
301301
break;
302+
case OPAL_ERR_MODEL_DECLARED:
303+
retval = "Model declared";
304+
break;
302305
default:
303306
retval = "UNRECOGNIZED";
304307
}

0 commit comments

Comments
 (0)