Skip to content

Commit b3b8f62

Browse files
jsquyreshjelmn
authored andcommitted
osc_rdma: minor compiler warning stomp
(cherry picked from commit open-mpi/ompi@140cf90) Signed-off-by: Nathan Hjelm <[email protected]>
1 parent c193a28 commit b3b8f62

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ompi/mca/osc/rdma/osc_rdma_active_target.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* reserved.
1313
* Copyright (c) 2010 IBM Corporation. All rights reserved.
1414
* Copyright (c) 2012-2013 Sandia National Laboratories. All rights reserved.
15+
* Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
1516
* $COPYRIGHT$
1617
*
1718
* Additional copyrights may follow
@@ -183,7 +184,7 @@ int ompi_osc_rdma_post_atomic (ompi_group_t *group, int assert, ompi_win_t *win)
183184
osc_rdma_counter_t *temp;
184185
int ret;
185186

186-
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_TRACE, "post: %p, %d, %s", group, assert, win->w_name);
187+
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_TRACE, "post: %p, %d, %s", (void*) group, assert, win->w_name);
187188

188189
/* check if we are already in a post epoch */
189190
if (module->pw_group) {
@@ -327,7 +328,7 @@ int ompi_osc_rdma_start_atomic (ompi_group_t *group, int assert, ompi_win_t *win
327328
ompi_osc_rdma_sync_t *sync = &module->all_sync;
328329
int group_size = ompi_group_size (group);
329330

330-
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_TRACE, "start: %p, %d, %s", group, assert,
331+
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_TRACE, "start: %p, %d, %s", (void*) group, assert,
331332
win->w_name);
332333

333334
OPAL_THREAD_LOCK(&module->lock);

0 commit comments

Comments
 (0)