fix(stream): fix syntax error.

This commit is contained in:
Haojun Liao 2024-06-21 08:46:09 +08:00
parent 096ba251ec
commit bf16c596a6
1 changed files with 2 additions and 2 deletions

View File

@ -2207,10 +2207,10 @@ int32_t taskDbGenChkpUploadData__s3(STaskDbWrapper* pDb, void* bkdChkpMgt, int64
SBkdMgt* p = (SBkdMgt*)bkdChkpMgt;
char* temp = taosMemoryCalloc(1, strlen(pDb->path) + 32);
sprintf(temp, "%s%s%s%" PRId64 "", pDb->path, TD_DIRSEP, "tmp", chkpId);
sprintf(temp, "%s%s%s%" PRId64, pDb->path, TD_DIRSEP, "tmp", chkpId);
if (taosDirExist(temp)) {
cleanDir(temp, NULL);
cleanDir(temp, "");
} else {
taosMkDir(temp);
}