Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rob Latham
MPICH-BlueGene
Commits
66b5407a
Commit
66b5407a
authored
Apr 28, 2015
by
Rob Latham
Browse files
fixup: correctly const-ify hint processing routine
No reviewer
parent
cdf23c55
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mpi/romio/test/syshints.c
View file @
66b5407a
...
...
@@ -14,7 +14,7 @@ static void handle_error(int errcode, const char *str)
#define CHECK(fn) {int errcode; errcode = (fn); if (errcode != MPI_SUCCESS) handle_error(errcode, #fn); }
static
int
hint_check
(
MPI_Info
info_used
,
char
*
key
,
char
*
expected
)
{
static
int
hint_check
(
MPI_Info
info_used
,
const
char
*
key
,
const
char
*
expected
)
{
char
value
[
MPI_MAX_INFO_VAL
+
1
];
int
flag
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment