From 1e83be102d19e25c7f124e0ac622b294797a3d5e Mon Sep 17 00:00:00 2001 From: Shungang Li Date: Mon, 12 Aug 2024 11:13:12 +0800 Subject: [PATCH] fix: return value check --- source/common/src/cos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/src/cos.c b/source/common/src/cos.c index ab882f5fb8..7fa390d3bb 100644 --- a/source/common/src/cos.c +++ b/source/common/src/cos.c @@ -63,7 +63,7 @@ int32_t s3Begin() { TAOS_RETURN(TSDB_CODE_SUCCESS); } -void s3End() { S3_deinitialize(); } +void s3End() { (void)S3_deinitialize(); } int32_t s3Init() { TAOS_RETURN(TSDB_CODE_SUCCESS); /*s3Begin();*/ }