Skip to content

Commit

Permalink
[RUNTIME]fix unused-value warning (#5140)
Browse files Browse the repository at this point in the history
  • Loading branch information
windclarion authored Mar 24, 2020
1 parent 667e24f commit bbbfc1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/crt/crt_runtime_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ int TVMModGetFunction(TVMModuleHandle mod,
if (!strcmp(func_name, "load_params")) {
*out = &TVMGraphRuntime_LoadParams;
} else {
status -1;
status = -1;
}
return status;
}
Expand Down

0 comments on commit bbbfc1b

Please sign in to comment.