From 8f0ffc29904f1b7278ed5e1f71c97ace9e381b41 Mon Sep 17 00:00:00 2001 From: yudechen Date: Thu, 17 Mar 2022 15:02:14 +0800 Subject: [PATCH] =?UTF-8?q?fixed=20c94bf47=20from=20https://gitee.com/yude?= =?UTF-8?q?chen/developtools=5Fsyscap=5Fcodec/pulls/8=20=E6=B6=88=E9=99=A4?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E9=9D=99=E6=80=81=E6=A3=80=E6=9F=A5=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: yudechen Change-Id: I00dc53d865ba0f265df8d4f3121cce8c11e1d5e6 --- src/endian_internal.c | 2 +- src/main.c | 2 +- test/syscap_tool_test.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/endian_internal.c b/src/endian_internal.c index ec040c7..fc7301a 100755 --- a/src/endian_internal.c +++ b/src/endian_internal.c @@ -22,7 +22,7 @@ int32_t CheckEndian(void); -int32_t CheckEndian() +int32_t CheckEndian(void) { union { int32_t i; diff --git a/src/main.c b/src/main.c index de885a0..0aec356 100755 --- a/src/main.c +++ b/src/main.c @@ -13,13 +13,13 @@ * limitations under the License. */ -#include "syscap_tool.h" #include #include #include #include #include #include +#include "syscap_tool.h" extern char *optarg; diff --git a/test/syscap_tool_test.c b/test/syscap_tool_test.c index de617e6..c92be59 100755 --- a/test/syscap_tool_test.c +++ b/test/syscap_tool_test.c @@ -13,7 +13,6 @@ * limitations under the License. */ -#include "syscap_tool.h" #include #include #include @@ -23,6 +22,7 @@ #include #include #include +#include "syscap_tool.h" extern char *optarg; -- Gitee