编码规范修改。

Signed-off-by: yudechen <chenyude@huawei.com>
Change-Id: If180ec07e8b1d3ee9bdc2cc7b7d7be1fae2b90ff
This commit is contained in:
yudechen
2023-05-27 15:37:17 +08:00
parent 6cd240622d
commit 54c3aae395
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -13,8 +13,8 @@
* limitations under the License.
*/
#ifndef _SYSCAP_TOOL_H
#define _SYSCAP_TOOL_H
#ifndef SYSCAP_TOOL_H
#define SYSCAP_TOOL_H
#include <stdint.h>
@@ -48,4 +48,4 @@ int32_t SeparateSyscapFromString(const char *inputString, uint32_t *osArray, uin
#endif /* __cplusplus */
#endif /* __cplusplus */
#endif /* _SYSCAP_TOOL_H */
#endif /* SYSCAP_TOOL_H */
+2 -2
View File
@@ -330,7 +330,7 @@ FREE_SYSCAP_OUT:
return ret;
}
static int32_t CheckRpcidFormat(char *inputFile, char **buffer, uint32_t *Len)
static int32_t CheckRpcidFormat(char *inputFile, char **buffer, uint32_t *len)
{
uint32_t bufferLen;
uint16_t sysCaptype, sysCapLength;
@@ -362,7 +362,7 @@ static int32_t CheckRpcidFormat(char *inputFile, char **buffer, uint32_t *Len)
}
*buffer = contextBuffer;
*Len = bufferLen;
*len = bufferLen;
return 0;
}