hw/scsi/scsi-disk: Use qemu_hexdump_line to avoid sprintf
commit00a17d803d0931b00bffdb3b3e8a3e81251de9fa
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Fri, 12 Apr 2024 07:33:27 +0000 (12 00:33 -0700)
committerRichard Henderson <richard.henderson@linaro.org>
Wed, 5 Jun 2024 19:14:20 +0000 (5 12:14 -0700)
treedc9f467f1429baa1f4faad7d7c38c5ab2f72aecc
parent4b69210978bdf92d50b84d8662b3c38c78d79803
hw/scsi/scsi-disk: Use qemu_hexdump_line to avoid sprintf

sprintf() is deprecated on Darwin since macOS 13.0 / XCode 14.1.
Using qemu_hexdump_line both fixes the deprecation warning and
simplifies the code base.

Note that this drops the "0x" prefix to every byte, which should
be of no consequence to tracing.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20240412073346.458116-9-richard.henderson@linaro.org>
hw/scsi/scsi-disk.c