From b44d87475d95a2afdb3480384aa5297fc8c9d2f7 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Fri, 14 Jun 2024 17:54:44 +0800 Subject: [PATCH] fix(test): fix syntax error. --- source/libs/stream/test/backendTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/stream/test/backendTest.cpp b/source/libs/stream/test/backendTest.cpp index c9b981e5f9..dc506cfbc9 100644 --- a/source/libs/stream/test/backendTest.cpp +++ b/source/libs/stream/test/backendTest.cpp @@ -43,7 +43,7 @@ SStreamState *stateCreate(const char *path) { pTask->ver = 1024; pTask->id.streamId = 1023; pTask->id.taskId = 1111111; - SStreamMeta *pMeta = streamMetaOpen((path), NULL, NULL, 0, 0, NULL); + SStreamMeta *pMeta = streamMetaOpen((path), NULL, NULL, NULL, 0, 0, NULL); pTask->pMeta = pMeta; SStreamState *p = streamStateOpen((char *)path, pTask, true, 32, 32 * 1024);