GCC doesn't like comparison of signed and unsigned values. Signed-off-by: David Hildenbrand <david@xxxxxxxxxx> --- lib/report.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/report.c b/lib/report.c index aa23b65..f7af596 100644 --- a/lib/report.c +++ b/lib/report.c @@ -29,7 +29,7 @@ void report_pass(void) void report_prefix_pushf(const char *prefix_fmt, ...) { va_list va; - int len; + unsigned int len; int start; spin_lock(&lock); -- 2.9.3