[Pdbg] [PATCH v2 08/39] gdbserver: Make command callback array static
    Nicholas Piggin 
    npiggin at gmail.com
       
    Wed Apr 20 16:49:42 AEST 2022
    
    
  
The command array is local, make it static.
Reviewed-by: Joel Stanley <joel at jms.id.au>
Signed-off-by: Nicholas Piggin <npiggin at gmail.com>
---
 src/pdbgproxy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pdbgproxy.c b/src/pdbgproxy.c
index e32f5184..5a8b5f99 100644
--- a/src/pdbgproxy.c
+++ b/src/pdbgproxy.c
@@ -405,7 +405,7 @@ static int read_from_client(int fd)
 	return 0;
 }
 
-command_cb callbacks[LAST_CMD + 1] = {
+static command_cb callbacks[LAST_CMD + 1] = {
 	cmd_default,
 	get_gprs,
 	get_spr,
-- 
2.35.1
    
    
More information about the Pdbg
mailing list