On Wed, Nov 13, 2019 at 10:33:09AM +0100, Ján Tomko wrote: > Use this GLib macro instead of bswap_32 from gnulib. > > Signed-off-by: Ján Tomko <jtomko@xxxxxxxxxx> > --- > src/qemu/qemu_driver.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) Missing bootstrap.conf change to remove byteswap > diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c > index c969a3d463..85b0c9cb79 100644 > --- a/src/qemu/qemu_driver.c > +++ b/src/qemu/qemu_driver.c > @@ -2803,11 +2803,11 @@ struct _virQEMUSaveData { > static inline void > bswap_header(virQEMUSaveHeaderPtr hdr) > { > - hdr->version = bswap_32(hdr->version); > - hdr->data_len = bswap_32(hdr->data_len); > - hdr->was_running = bswap_32(hdr->was_running); > - hdr->compressed = bswap_32(hdr->compressed); > - hdr->cookieOffset = bswap_32(hdr->cookieOffset); > + hdr->version = GUINT32_SWAP_LE_BE(hdr->version); > + hdr->data_len = GUINT32_SWAP_LE_BE(hdr->data_len); > + hdr->was_running = GUINT32_SWAP_LE_BE(hdr->was_running); > + hdr->compressed = GUINT32_SWAP_LE_BE(hdr->compressed); > + hdr->cookieOffset = GUINT32_SWAP_LE_BE(hdr->cookieOffset); > } Also needs to remove byteswap.h include file Regards, Daniel -- |: https://berrange.com -o- https://www.flickr.com/photos/dberrange :| |: https://libvirt.org -o- https://fstop138.berrange.com :| |: https://entangle-photo.org -o- https://www.instagram.com/dberrange :| -- libvir-list mailing list libvir-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libvir-list