未验证 提交 c70006d9 编写于 作者: S Shengliang Guan 提交者: GitHub

Merge pull request #17512 from taosdata/FIX/TD-19672-3.0

fix: resolve a format issue of printf in hashTest.cpp
......@@ -216,7 +216,7 @@ void perfTest() {
char* name = (char*)taosMemoryCalloc(50000000, 9);
for (int64_t i = 0; i < 50000000; ++i) {
sprintf(name + i * 9, "t%08d", i);
sprintf(name + i * 9, "t%08" PRId64, i);
}
for (int64_t i = 0; i < 50; ++i) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册