fix(stream): fix syntax error.

This commit is contained in:
Haojun Liao 2023-08-17 09:13:37 +08:00
parent eb76b6f175
commit 58c0a3d8ef
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ int32_t streamGetFileSize(char* path, char* name, int64_t* sz) {
char* fullname = taosMemoryCalloc(1, strlen(path) + 32);
sprintf(fullname, "%s%s%s", path, TD_DIRSEP, name);
ret = taosStatFile(fullname, sz, NULL);
ret = taosStatFile(fullname, sz, NULL, NULL);
taosMemoryFree(fullname);
return ret;