From af7b8010f899754971a360355f4e9f49409e9757 Mon Sep 17 00:00:00 2001 From: YuQing <384681@qq.com> Date: Mon, 24 May 2021 21:11:56 +0800 Subject: [PATCH] correct type from bool to int :( --- src/sf_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sf_util.c b/src/sf_util.c index ee3cd4f..6f25cea 100644 --- a/src/sf_util.c +++ b/src/sf_util.c @@ -156,7 +156,7 @@ const char *sf_parse_daemon_mode_and_action_ex(int argc, char *argv[], { #define CMD_NORMAL_ARG_COUNT 2 int i; - bool inc; + int inc; struct { int argc; char *argv[CMD_NORMAL_ARG_COUNT];