]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix a make check error
authorDaniel Veillard <veillard@redhat.com>
Sun, 29 May 2011 10:21:24 +0000 (18:21 +0800)
committerDaniel Veillard <veillard@redhat.com>
Sun, 29 May 2011 10:21:24 +0000 (18:21 +0800)
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

src/remote_protocol-structs

index 5b6a6343c9cbbd0d5aac71e98720711d82f3fe79..031e2f285247a893b4561e73b3610c074e363409 100644 (file)
@@ -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 {