From f5ff3504b50ca524e9b431ba45fd36ae2735fac6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Draszik?= Date: Mon, 25 May 2020 07:14:14 +0100 Subject: [PATCH] auto/run_test: fix Wsign-compare warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Compiling a source base / test with Wsign-compare enabled, gives the following warning: build/test/runners/test_system_runner.c: In function ‘run_test’: build/test/runners/test_system_runner.c:62:35: warning: conversion to ‘UNITY_UINT’ {aka ‘long unsigned int’} from ‘int’ may change the sign of the result [-Wsign-conversion] 62 | Unity.CurrentTestLineNumber = line_num; | ^~~~~~~~ Fix by updating the type in the function declaration. Signed-off-by: André Draszik --- auto/run_test.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto/run_test.erb b/auto/run_test.erb index cb7f2b5..f91b566 100644 --- a/auto/run_test.erb +++ b/auto/run_test.erb @@ -1,5 +1,5 @@ /*=======Test Runner Used To Run Each Test=====*/ -static void run_test(UnityTestFunction func, const char* name, int line_num) +static void run_test(UnityTestFunction func, const char* name, UNITY_LINE_TYPE line_num) { Unity.CurrentTestName = name; Unity.CurrentTestLineNumber = line_num;