去掉static静态告警

Signed-off-by: liutuantuan <liutuantuan1@huawei.com>
This commit is contained in:
liutuantuan
2024-05-29 09:51:29 +08:00
parent 16deb2be02
commit eb5512a575
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ int32_t PCIDEncode(char *inputFile, char *outputPath);
/* in: inputFile, file name format: <product>.sc, out: outputPath/<product>.json */
int32_t PCIDDecode(char *inputFile, char *outputPath);
/* in: inputFile, out: outputPath/rpcid.sc */
static int32_t RPCIDEncode(char *inputFile, char *outputPath);
int32_t RPCIDEncode(char *inputFile, char *outputPath);
/* in: inputFile, out: outputPath/rpcid.json */
int32_t RPCIDDecode(char *inputFile, char *outputPath);
/* in: inputFile, out: outputPath/rpcid.json */
+1 -1
View File
@@ -133,7 +133,7 @@ static int32_t FreeAfterRPCIDEncode(
return ret;
}
static int32_t RPCIDEncode(char *inputFile, char *outputPath)
int32_t RPCIDEncode(char *inputFile, char *outputPath)
{
char *contextBuffer = NULL;
uint32_t bufferLen, sysCapSize;