fix(stream): fix syntax error.

This commit is contained in:
Haojun Liao 2024-07-18 10:49:46 +08:00
parent 438921e9cc
commit fd3a06586b
1 changed files with 2 additions and 2 deletions

View File

@ -284,7 +284,7 @@ void streamMetaHbToMnode(void* param, void* tmrId) {
code = taosReleaseRef(streamMetaId, rid); code = taosReleaseRef(streamMetaId, rid);
if (code) { if (code) {
stError("vgId:%d in meta timer, failed to release the meta rid:%d", pMeta->vgId, rid); stError("vgId:%d in meta timer, failed to release the meta rid:%" PRId64, pMeta->vgId, rid);
} }
return; return;
} }
@ -301,7 +301,7 @@ void streamMetaHbToMnode(void* param, void* tmrId) {
code = taosReleaseRef(streamMetaId, rid); code = taosReleaseRef(streamMetaId, rid);
if (code) { if (code) {
stError("vgId:%d in meta timer, failed to release the meta rid:%d", pMeta->vgId, rid); stError("vgId:%d in meta timer, failed to release the meta rid:%" PRId64, pMeta->vgId, rid);
} }
} }