mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06: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;
|
u_int flags;
|
||||||
};
|
};
|
||||||
struct remote_interface_change_begin_args {
|
struct remote_interface_change_begin_args {
|
||||||
unsigned int flags;
|
u_int flags;
|
||||||
};
|
};
|
||||||
struct remote_interface_change_commit_args {
|
struct remote_interface_change_commit_args {
|
||||||
unsigned int flags;
|
u_int flags;
|
||||||
};
|
};
|
||||||
struct remote_interface_change_rollback_args {
|
struct remote_interface_change_rollback_args {
|
||||||
unsigned int flags;
|
u_int flags;
|
||||||
};
|
};
|
||||||
struct remote_auth_list_ret {
|
struct remote_auth_list_ret {
|
||||||
struct {
|
struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user