Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sds
margo
Commits
e1f07a01
Commit
e1f07a01
authored
Aug 22, 2017
by
Shane Snyder
Browse files
small bug fix in margo_init
parent
143c1eae
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/margo.c
View file @
e1f07a01
...
...
@@ -94,7 +94,7 @@ margo_instance_id margo_init(const char *addr_str, int mode,
int
ret
;
struct
margo_instance
*
mid
=
MARGO_INSTANCE_NULL
;
if
(
mode
!=
MARGO_CLIENT_MODE
||
mode
!=
MARGO_SERVER_MODE
)
goto
err
;
if
(
mode
!=
MARGO_CLIENT_MODE
&&
mode
!=
MARGO_SERVER_MODE
)
goto
err
;
ret
=
ABT_init
(
0
,
NULL
);
/* XXX: argc/argv not currently used by ABT ... */
if
(
ret
!=
0
)
goto
err
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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