mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 03:25:20 +00:00
Fix a make check error
Apparently introdunced in commit 376e1d9420
the generator produces u_int flags not unsigned int flags.
* src/remote_protocol-structs: fix to the actual expected type and
alignment
This commit is contained in:
parent
4996c314b0
commit
a9a95cb14a
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user