fix(stream): fix error in unit test.

This commit is contained in:
Haojun Liao 2024-06-17 23:51:25 +08:00
parent 985d619569
commit bca3cf4e9e
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ SStreamState *stateCreate(const char *path) {
SStreamMeta *pMeta = streamMetaOpen((path), NULL, NULL, NULL, 0, 0, NULL);
pTask->pMeta = pMeta;
SStreamState *p = streamStateOpen((char *)path, pTask, true, 32, 32 * 1024);
SStreamState *p = streamStateOpen((char *)path, pTask, 0, 0, true, 32, 32 * 1024);
ASSERT(p != NULL);
return p;
}