Skip to content

Commit

Permalink
[RUNTIME]fix unused-value warning (apache#5140)
Browse files Browse the repository at this point in the history
  • Loading branch information
windclarion authored and Trevor Morris committed Apr 16, 2020
1 parent 2c10676 commit da07aed
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 da07aed

Please sign in to comment.