Skip to content

Commit 56c35d2

Browse files
author
Ralph Castain
authored
Merge pull request #5275 from rhc54/topic/cleanup
Silence warnings and ignore test binary
2 parents e2e6da4 + 9479401 commit 56c35d2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,8 @@ test/runtime/start_shut
676676
test/runtime/opal_init_finalize
677677
test/runtime/orte_init_finalize
678678

679+
test/spc/spc_test
680+
679681
test/threads/opal_condition
680682
test/threads/opal_thread
681683

opal/util/info_subscriber.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Copyright (c) 2015 Research Organization for Information Science
1818
* and Technology (RIST). All rights reserved.
1919
* Copyright (c) 2016-2018 IBM Corporation. All rights reserved.
20-
* Copyright (c) 2017 Intel, Inc. All rights reserved.
20+
* Copyright (c) 2017-2018 Intel, Inc. All rights reserved.
2121
* $COPYRIGHT$
2222
*
2323
* Additional copyrights may follow
@@ -352,7 +352,7 @@ int opal_infosubscribe_subscribe(opal_infosubscriber_t *object, char *key, char
352352
if (strlen(key) > OPAL_MAX_INFO_KEY-strlen(OPAL_INFO_SAVE_PREFIX)) {
353353
fprintf(stderr, "DEVELOPER WARNING: Unexpected key length [%s]: "
354354
"OMPI internal callback keys are limited to %d chars\n",
355-
key, OPAL_MAX_INFO_KEY-strlen(OPAL_INFO_SAVE_PREFIX));
355+
key, (int)(OPAL_MAX_INFO_KEY-strlen(OPAL_INFO_SAVE_PREFIX)));
356356
#if OPAL_ENABLE_DEBUG
357357
assert(!(strlen(key) > OPAL_MAX_INFO_KEY-strlen(OPAL_INFO_SAVE_PREFIX)));
358358
#endif

0 commit comments

Comments
 (0)