summaryrefslogtreecommitdiff
path: root/runner
diff options
context:
space:
mode:
authorPetri Latvala <petri.latvala@intel.com>2018-10-29 16:30:51 +0200
committerPetri Latvala <petri.latvala@intel.com>2018-11-05 14:12:41 +0200
commitf797c395bf13d06e67448e9c4d459fc996eb3cc1 (patch)
treef724f29077be57ec9de86223b1d3536f9e30df64 /runner
parent5f2af06b5c1934ff4d5ed3ea55efc306289f1c53 (diff)
runner: Fix declaration of timeofday_double
Fixes compiler warning: function declaration isn’t a prototype Signed-off-by: Petri Latvala <petri.latvala@intel.com> Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Diffstat (limited to 'runner')
-rw-r--r--runner/executor.c2
1 files changed, 1 insertions, 1 deletions
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;