From f797c395bf13d06e67448e9c4d459fc996eb3cc1 Mon Sep 17 00:00:00 2001 From: Petri Latvala Date: Mon, 29 Oct 2018 16:30:51 +0200 Subject: runner: Fix declaration of timeofday_double MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes compiler warning: function declaration isn’t a prototype Signed-off-by: Petri Latvala Reviewed-by: Arkadiusz Hiler --- runner/executor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runner') diff --git a/runner/executor.c b/runner/executor.c index fc79f772..007b72ce 100644 --- a/runner/executor.c +++ b/runner/executor.c @@ -928,7 +928,7 @@ static bool clear_old_results(char *path) return true; } -static double timeofday_double() +static double timeofday_double(void) { struct timeval tv; -- cgit v1.2.3