liangfu commented on a change in pull request #6044:
URL: https://github.com/apache/incubator-tvm/pull/6044#discussion_r454063901
##########
File path: src/runtime/crt/common/packed_func.c
##########
@@ -85,6 +86,7 @@ int TVMPackedFunc_InitGlobalFunc(TVMPackedFunc* pf, const
char* name, const TVMA
return status;
}
+ snprintf(pf->name, sizeof(pf->name), "%s", name);
Review comment:
looks like the extra space has to be removed to pass clang-format.
```diff
- snprintf(pf->name, sizeof(pf->name), "%s", name);
+ snprintf(pf->name, sizeof(pf->name), "%s", name);
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]