Re: [PATCH v4 28/38] gdbstub: lightly refactor connection to avoid snprintf

2023-07-03 Thread Richard Henderson
On 6/30/23 20:04, Alex Bennée wrote: This may be a bit too much to avoid an snprintf and the slightly dodgy assign to a const variable. But hopefully not. Signed-off-by: Alex Bennée --- v2 - fix checkpatch warning --- gdbstub/softmmu.c | 19 +-- 1 file changed, 9 insertion

[PATCH v4 28/38] gdbstub: lightly refactor connection to avoid snprintf

2023-06-30 Thread Alex Bennée
This may be a bit too much to avoid an snprintf and the slightly dodgy assign to a const variable. But hopefully not. Signed-off-by: Alex Bennée --- v2 - fix checkpatch warning --- gdbstub/softmmu.c | 19 +-- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/gdbst