Skip to content
Snippets Groups Projects
Commit bc56db49 authored by Dominik Loidolt's avatar Dominik Loidolt
Browse files

Fix: Add 'static' keyword to return_timestamp function

parent 17fd4592
No related branches found
No related tags found
1 merge request!34Update cmp_tool to version v0.13
...@@ -733,9 +733,10 @@ static int cmp_gernate_rdcu_info(const struct cmp_cfg *cfg, int cmp_size_bit, ...@@ -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); return cmp_ent_create_timestamp(NULL);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment