From bc56db49fbe5ab0ddd3cd61bbc694f198484c69f Mon Sep 17 00:00:00 2001 From: Dominik Loidolt <dominik.loidolt@univie.ac.at> Date: Thu, 6 Jun 2024 15:48:34 +0200 Subject: [PATCH] Fix: Add 'static' keyword to return_timestamp function --- programs/cmp_tool.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/programs/cmp_tool.c b/programs/cmp_tool.c index b7512eb..0c8df20 100644 --- a/programs/cmp_tool.c +++ b/programs/cmp_tool.c @@ -733,9 +733,10 @@ static int cmp_gernate_rdcu_info(const struct cmp_cfg *cfg, int cmp_size_bit, /** - * retrun a current PLATO timestamp + * return a current PLATO timestamp */ -uint64_t return_timestamp(void) + +static uint64_t return_timestamp(void) { return cmp_ent_create_timestamp(NULL); } -- GitLab