From patchwork Wed Nov 21 16:24:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [3/6] lib: fwts_framework: show_progress flag should be a bool Date: Wed, 21 Nov 2012 06:24:42 -0000 From: Colin King X-Patchwork-Id: 200801 Message-Id: <1353515085-8053-4-git-send-email-colin.king@canonical.com> To: fwts-devel@lists.ubuntu.com From: Colin Ian King Make show_progress a bool type rather than an int in fwts_framework Signed-off-by: Colin Ian King Acked-by: Keng-Yu Lin Acked-by: Ivan Hu --- src/lib/include/fwts_framework.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/include/fwts_framework.h b/src/lib/include/fwts_framework.h index 693d993..32bab8c 100644 --- a/src/lib/include/fwts_framework.h +++ b/src/lib/include/fwts_framework.h @@ -124,7 +124,7 @@ typedef struct { fwts_list total_taglist; /* List of tags found when running all tests */ fwts_firmware_type firmware_type; /* Type of firmware */ - int show_progress; /* Show progress while running current test */ + bool show_progress; /* Show progress while running current test */ fwts_log_type log_type; /* Output log type, default is plain text ASCII */ } fwts_framework;