From: Daniel Veillard Date: Sun, 29 May 2011 10:21:24 +0000 (+0800) Subject: Fix a make check error X-Git-Tag: CVE-2011-2178~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9a95cb14a2c3329643186ced21b0eaad0c46ed7;p=thirdparty%2Flibvirt.git Fix a make check error Apparently introdunced in commit 376e1d9420b the generator produces u_int flags not unsigned int flags. * src/remote_protocol-structs: fix to the actual expected type and alignment --- diff --git a/src/remote_protocol-structs b/src/remote_protocol-structs index 5b6a6343c9..031e2f2852 100644 --- a/src/remote_protocol-structs +++ b/src/remote_protocol-structs @@ -804,13 +804,13 @@ struct remote_interface_destroy_args { u_int flags; }; struct remote_interface_change_begin_args { - unsigned int flags; + u_int flags; }; struct remote_interface_change_commit_args { - unsigned int flags; + u_int flags; }; struct remote_interface_change_rollback_args { - unsigned int flags; + u_int flags; }; struct remote_auth_list_ret { struct {