Re: [PATCH v1 06/15] monitor: expose monitor_puts to rest of code

2022-04-21 Thread Markus Armbruster
Alex Bennée writes: > This helps us construct strings elsewhere before echoing to the > monitor. It avoids having to jump through hoops like: > > monitor_printf(mon, "%s", s->str); > > Signed-off-by: Alex Bennée There's just one caller other than monitor_vprintf(). Even if you add a few more

Re: [PATCH v1 06/15] monitor: expose monitor_puts to rest of code

2022-04-09 Thread Richard Henderson
On 4/8/22 09:47, Alex Bennée wrote: This helps us construct strings elsewhere before echoing to the monitor. It avoids having to jump through hoops like: monitor_printf(mon, "%s", s->str); Signed-off-by: Alex Bennée --- include/monitor/monitor.h | 1 + monitor/monitor-internal.h | 1 -

[PATCH v1 06/15] monitor: expose monitor_puts to rest of code

2022-04-08 Thread Alex Bennée
This helps us construct strings elsewhere before echoing to the monitor. It avoids having to jump through hoops like: monitor_printf(mon, "%s", s->str); Signed-off-by: Alex Bennée --- include/monitor/monitor.h | 1 + monitor/monitor-internal.h | 1 - 2 files changed, 1 insertion(+), 1 deleti