[Pdbg] [PATCH 04/14] gdbserver: Make command static

Joel Stanley joel at jms.id.au
Wed Mar 16 10:13:40 AEDT 2022


On Mon, 14 Mar 2022 at 04:18, Nicholas Piggin <npiggin at gmail.com> wrote:
>
> The command array is local, make it static.
>
> Signed-off-by: Nicholas Piggin <npiggin at gmail.com>

Reviewed-by: Joel Stanley <joel at jms.id.au>


> ---
>  src/pdbgproxy.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/pdbgproxy.c b/src/pdbgproxy.c
> index e32f518..5a8b5f9 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.23.0
>
> --
> Pdbg mailing list
> Pdbg at lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/pdbg


More information about the Pdbg mailing list