From f1c55a20c854b26bf3b8f0f4854c3190d12c3098 Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Thu, 29 Aug 2019 22:57:02 +0200 Subject: [PATCH] config: Use same type to store all bools Change-Id: Ife768dd5b71355759db7d678d7c3fd6a5399e811 --- src/shared/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/config.h b/src/shared/config.h index 5c3ea1f..aea42ea 100644 --- a/src/shared/config.h +++ b/src/shared/config.h @@ -39,11 +39,11 @@ enum ReportType { typedef struct config { bool allow_zip; + bool dump_core; int system_max_use; int system_keep_free; int max_retention_sec; int max_crash_dump; - int dump_core; enum ReportType report_type; char *crash_root_path; char *extra_script; -- 2.7.4