Skip to content

Commit b6840ad

Browse files
author
Ralph Castain
authored
Merge pull request #4679 from rhc54/topic/iso
Silence some warnings
2 parents af2a3b4 + e2bc941 commit b6840ad

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

orte/mca/plm/isolated/plm_isolated.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* reserved.
1515
* Copyright (c) 2008-2009 Sun Microsystems, Inc. All rights reserved.
1616
* Copyright (c) 2011 IBM Corporation. All rights reserved.
17-
* Copyright (c) 2014-2017 Intel, Inc. All rights reserved.
17+
* Copyright (c) 2014-2018 Intel, Inc. All rights reserved.
1818
* Copyright (c) 2017 Research Organization for Information Science
1919
* and Technology (RIST). All rights reserved.
2020
* $COPYRIGHT$
@@ -52,7 +52,7 @@
5252

5353
static int isolated_init(void);
5454
static int isolated_launch(orte_job_t *jdata);
55-
static int remote_spawn();
55+
static int remote_spawn(void);
5656
static int isolated_terminate_orteds(void);
5757
static int isolated_finalize(void);
5858

@@ -95,7 +95,7 @@ static int isolated_init(void)
9595
/*
9696
* launch a set of daemons from a remote daemon
9797
*/
98-
static int remote_spawn()
98+
static int remote_spawn(void)
9999
{
100100
/* unused function in this mode */
101101
return ORTE_SUCCESS;

orte/mca/plm/rsh/plm_rsh_module.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* reserved.
1515
* Copyright (c) 2008-2009 Sun Microsystems, Inc. All rights reserved.
1616
* Copyright (c) 2011-2017 IBM Corporation. All rights reserved.
17-
* Copyright (c) 2014-2017 Intel, Inc. All rights reserved.
17+
* Copyright (c) 2014-2018 Intel, Inc. All rights reserved.
1818
* Copyright (c) 2015-2017 Research Organization for Information Science
1919
* and Technology (RIST). All rights reserved.
2020
* $COPYRIGHT$
@@ -784,7 +784,7 @@ static void ssh_child(int argc, char **argv)
784784
/*
785785
* launch a set of daemons from a remote daemon
786786
*/
787-
static int remote_spawn()
787+
static int remote_spawn(void)
788788
{
789789
int node_name_index1;
790790
int proc_vpid_index;

0 commit comments

Comments
 (0)