freebsd32: fix type of olstat arg

Reviewed by:	kevans
This commit is contained in:
Brooks Davis 2021-11-17 20:12:23 +00:00
parent 9946c920a4
commit 381f6804ec
2 changed files with 2 additions and 2 deletions

View File

@ -918,7 +918,7 @@ struct ofreebsd32_stat_args {
};
struct ofreebsd32_lstat_args {
char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
char ub_l_[PADL_(struct ostat *)]; struct ostat * ub; char ub_r_[PADR_(struct ostat *)];
char ub_l_[PADL_(struct ostat32 *)]; struct ostat32 * ub; char ub_r_[PADR_(struct ostat32 *)];
};
struct ofreebsd32_sigaction_args {
char signum_l_[PADL_(int)]; int signum; char signum_r_[PADR_(int)];

View File

@ -130,7 +130,7 @@
struct ostat32 *ub); }
39 AUE_GETPPID NOPROTO { pid_t getppid(void); }
40 AUE_LSTAT COMPAT { int freebsd32_lstat(const char *path, \
struct ostat *ub); }
struct ostat32 *ub); }
41 AUE_DUP NOPROTO { int dup(u_int fd); }
42 AUE_PIPE COMPAT10 { int freebsd32_pipe(void); }
43 AUE_GETEGID NOPROTO { gid_t getegid(void); }