Skip to content

Commit 933891a

Browse files
committed
Merge pull request open-mpi#712 from jsquyres/pr/v2.0.0/minor-compiler-warning-stomps
oshmem: minor compiler warning stomp
2 parents de5086c + e860d3e commit 933891a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

oshmem/proc/proc.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* All rights reserved.
44
* Copyright (c) 2014-2015 Research Organization for Information Science
55
* and Technology (RIST). All rights reserved.
6+
* Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
67
* $COPYRIGHT$
78
*
89
* Additional copyrights may follow
@@ -64,7 +65,7 @@ int oshmem_proc_group_init(void)
6465
{
6566
if (orte_process_info.num_procs != opal_list_get_size(&ompi_proc_list)) {
6667
opal_output(0,
67-
"Error: oshmem_group_all is not created: orte_process_info.num_procs = %d ompi_proc_list = %d",
68+
"Error: oshmem_group_all is not created: orte_process_info.num_procs = %d ompi_proc_list = %" PRIsize_t,
6869
orte_process_info.num_procs,
6970
opal_list_get_size(&ompi_proc_list));
7071
return OSHMEM_ERROR;

0 commit comments

Comments
 (0)