Skip to content

Commit b1c100c

Browse files
committed
win_get_info: fix indentation
Signed-off-by: Nathan Hjelm <[email protected]>
1 parent c87ef46 commit b1c100c

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

ompi/mpi/c/win_get_info.c

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
12
/*
23
* Copyright (c) 2013 Sandia National Laboratories. All rights reserved.
4+
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
5+
* reserved.
36
* $COPYRIGHT$
47
*
58
* Additional copyrights may follow
@@ -46,12 +49,12 @@ int MPI_Win_get_info(MPI_Win win, MPI_Info *info_used)
4649
ret = win->w_osc_module->osc_get_info(win, info_used);
4750

4851
if (OMPI_SUCCESS == ret && *info_used) {
49-
/* set standard info keys based on what the OSC module is using */
50-
if (win->w_flags & OMPI_WIN_NO_LOCKS) {
51-
ompi_info_set (*info_used, "no_locks", "true");
52-
} else {
53-
ompi_info_set (*info_used, "no_locks", "false");
54-
}
52+
/* set standard info keys based on what the OSC module is using */
53+
if (win->w_flags & OMPI_WIN_NO_LOCKS) {
54+
ompi_info_set (*info_used, "no_locks", "true");
55+
} else {
56+
ompi_info_set (*info_used, "no_locks", "false");
57+
}
5558
}
5659

5760
OMPI_ERRHANDLER_RETURN(ret, win, ret, FUNC_NAME);

0 commit comments

Comments
 (0)