Skip to content

Commit

Permalink
Merge pull request #289 from rhc54/topic/f2
Browse files Browse the repository at this point in the history
Correctly name the reachable components
  • Loading branch information
rhc54 committed Jan 8, 2020
2 parents 1f5d14c + a2e6fb9 commit 52d4988
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/mca/reachable/netlink/reachable_netlink.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
BEGIN_C_DECLS

PRRTE_EXPORT extern prrte_reachable_base_component_t
mca_reachable_netlink_component;
prrte_reachable_netlink_component;

PRRTE_EXPORT extern const prrte_reachable_base_module_t
prrte_reachable_netlink_module;
Expand Down
2 changes: 1 addition & 1 deletion src/mca/reachable/netlink/reachable_netlink_component.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static int component_register(void);
* and pointers to our public functions in it
*/

prrte_reachable_base_component_t mca_reachable_netlink_component = {
prrte_reachable_base_component_t prrte_reachable_netlink_component = {

/* First, the mca_component_t struct containing meta information
about the component itself */
Expand Down
2 changes: 1 addition & 1 deletion src/mca/reachable/weighted/reachable_weighted.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ typedef struct {
prrte_reachable_base_component_t super;
} prrte_reachable_weighted_component_t;

PRRTE_EXPORT extern prrte_reachable_weighted_component_t mca_reachable_weighted_component;
PRRTE_EXPORT extern prrte_reachable_weighted_component_t prrte_reachable_weighted_component;

PRRTE_EXPORT extern const prrte_reachable_base_module_t prrte_reachable_weighted_module;

Expand Down
2 changes: 1 addition & 1 deletion src/mca/reachable/weighted/reachable_weighted_component.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static int component_register(void);
* and pointers to our public functions in it
*/

prrte_reachable_weighted_component_t mca_reachable_weighted_component = {
prrte_reachable_weighted_component_t prrte_reachable_weighted_component = {
{

/* First, the mca_component_t struct containing meta information
Expand Down

0 comments on commit 52d4988

Please sign in to comment.