Skip to content

Commit 1f0b6f7

Browse files
authored
Merge pull request #4095 from jsquyres/pr/fix-compiler-warning
rcash_base_frame: fix compiler warning
2 parents 4cacd22 + ce3a032 commit 1f0b6f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

opal/mca/rcache/base/rcache_base_frame.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* All rights reserved
1515
* Copyright (c) 2015-2016 Research Organization for Information Science
1616
* and Technology (RIST). All rights reserved.
17+
* Copyright (c) 2017 Cisco Systems, Inc. All rights reserved
1718
* $COPYRIGHT$
1819
*
1920
* Additional copyrights may follow
@@ -72,7 +73,7 @@ OBJ_CLASS_INSTANCE(mca_rcache_base_registration_t, opal_free_list_item_t,
7273
* Global variables
7374
*/
7475
opal_list_t mca_rcache_base_modules = {{0}};
75-
opal_free_list_t mca_rcache_base_vma_tree_items = {{0}};
76+
opal_free_list_t mca_rcache_base_vma_tree_items = {{{0}}};
7677
bool mca_rcache_base_vma_tree_items_inited = false;
7778
unsigned int mca_rcache_base_vma_tree_items_min = TREE_ITEMS_MIN;
7879
int mca_rcache_base_vma_tree_items_max = TREE_ITEMS_MAX;

0 commit comments

Comments
 (0)