commit 5d6a1ccd8cd97a0708aabcfb5088b44c6ae5395d Author: Oliver Pinter Date: Sat Mar 30 18:24:02 2013 +0100 one more hexdump fix Signed-off-by: Oliver Pinter diff --git a/util/iov.c b/util/iov.c index 9dae318..bab3998 100644 --- a/util/iov.c +++ b/util/iov.c @@ -211,7 +211,7 @@ void iov_hexdump(const struct iovec *iov, const unsigned int iov_cnt, size = size > limit ? limit : size; buf = g_malloc(size); iov_to_buf(iov, iov_cnt, 0, buf, size); - hexdump(buf, fp, prefix, size); + qemu_hexdump(buf, fp, prefix, size); g_free(buf); }