From e32b98c3a1a0a2580be6468fc693beb311ac7dd2 Mon Sep 17 00:00:00 2001 From: Alberto Escolar Piedras Date: Mon, 12 May 2025 14:56:09 +0200 Subject: [PATCH] soc posix: Be explicit about wanting the function address To be more readable Signed-off-by: Alberto Escolar Piedras --- soc/native/inf_clock/soc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/native/inf_clock/soc.c b/soc/native/inf_clock/soc.c index 53d7d90c50c..cf0ba0fdbcb 100644 --- a/soc/native/inf_clock/soc.c +++ b/soc/native/inf_clock/soc.c @@ -123,7 +123,7 @@ void posix_boot_cpu(void) { nce_st = nce_init(); posix_arch_init(); - nce_boot_cpu(nce_st, z_cstart); + nce_boot_cpu(nce_st, &z_cstart); } /**