From patchwork Wed Nov 21 16:24:41 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/6] lib: fwts_framework: failed_level should be type fwts_log_level Date: Wed, 21 Nov 2012 06:24:41 -0000 From: Colin King X-Patchwork-Id: 200798 Message-Id: <1353515085-8053-3-git-send-email-colin.king@canonical.com> To: fwts-devel@lists.ubuntu.com From: Colin Ian King The failed_level type in the fwts_framework struct should be of type fwts_log_level rather than an int. 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 c406faf..693d993 100644 --- a/src/lib/include/fwts_framework.h +++ b/src/lib/include/fwts_framework.h @@ -118,7 +118,7 @@ typedef struct { int minor_test_progress; /* Percentage completion of current test */ int print_summary; /* Print summary of results at end of test runs */ - int failed_level; /* Bit mask of failed levels in test run */ + fwts_log_level failed_level; /* Bit mask of failed levels in test run */ fwts_list test_taglist; /* List of tags found when running all minor tests */ fwts_list total_taglist; /* List of tags found when running all tests */