You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2024/02/22 02:38:59 UTC

(nuttx-apps) branch master updated: build/ci: fix CI blocking unused variables/functions issues

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new b32abfab3 build/ci: fix CI blocking unused variables/functions issues
b32abfab3 is described below

commit b32abfab39aa8c51bc6dad9f2bbbb1257328fb64
Author: Yanfeng Liu <yf...@qq.com>
AuthorDate: Thu Feb 22 09:32:14 2024 +0800

    build/ci: fix CI blocking unused variables/functions issues
    
    This patch attempts to fix the blocking issues encountered with build
    6374 of apps/pull/2300.
    
    Signed-off-by: Yanfeng Liu <yf...@qq.com>
---
 testing/getprime/getprime_main.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/testing/getprime/getprime_main.c b/testing/getprime/getprime_main.c
index dd0b179e9..198f4a5ca 100644
--- a/testing/getprime/getprime_main.c
+++ b/testing/getprime/getprime_main.c
@@ -158,6 +158,7 @@ static void get_prime_in_parallel(int n)
     }
 
   printf("Done\n");
+  UNUSED(status);
 }
 
 /****************************************************************************