From: Karol Lewandowski Date: Thu, 29 Aug 2019 20:57:02 +0000 (+0200) Subject: config: Use same type to store all bools X-Git-Tag: accepted/tizen/unified/20190904.224501~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f1c55a20c854b26bf3b8f0f4854c3190d12c3098;p=platform%2Fcore%2Fsystem%2Fcrash-worker.git config: Use same type to store all bools Change-Id: Ife768dd5b71355759db7d678d7c3fd6a5399e811 --- 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;