Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linux-user: Use abi_uint not unsigned in syscall_defs.h
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
rth7680 committed Jul 15, 2023
1 parent 20d4956 commit 0f41be8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linux-user/syscall_defs.h
Expand Up @@ -1776,14 +1776,14 @@ struct target_stat {

#define TARGET_STAT_HAVE_NSEC
struct target_stat {
unsigned st_dev;
abi_uint st_dev;
abi_long st_pad1[3]; /* Reserved for network id */
abi_ulong st_ino;
abi_uint st_mode;
abi_uint st_nlink;
abi_int st_uid;
abi_int st_gid;
unsigned st_rdev;
abi_uint st_rdev;
abi_long st_pad2[2];
abi_long st_size;
abi_long st_pad3;
Expand Down

0 comments on commit 0f41be8

Please sign in to comment.