On 7/4/24 09:30, Richard Henderson wrote:
On 7/2/24 11:44, Pierrick Bouvier wrote:+ case QEMU_PLUGIN_MEM_VALUE_U128: + g_string_append_printf(out, "0x%.0"PRIx64"%"PRIx64, + value.data.u128.high, value.data.u128.low);PRIx64 does not pad. You need %016"PRIx64 for the low value.
Oops, indeed. I'll output all values with fixed width.
Otherwise, Reviewed-by: Richard Henderson <richard.hender...@linaro.org> r~