From a9a95cb14a2c3329643186ced21b0eaad0c46ed7 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Sun, 29 May 2011 18:21:24 +0800 Subject: [PATCH] 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 --- src/remote_protocol-structs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 { -- 2.47.2