On 4/11/24 03:43, Philippe Mathieu-Daudé wrote:
sprintf() is deprecated on Darwin since macOS 13.0 / XCode 14.1, resulting in painful developper experience. Use snprintf() instead.Signed-off-by: Philippe Mathieu-Daudé <phi...@linaro.org> --- disas/riscv.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
Ug. Repeated strlen+strncat? All of format_inst should be rewritten, probably using GString. r~