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:
Daniel Veillard 2011-05-29 18:21:24 +08:00
parent 4996c314b0
commit a9a95cb14a

View 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 {