freebsd32: fix type of olstat arg
Reviewed by: kevans
This commit is contained in:
parent
9946c920a4
commit
381f6804ec
@ -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)];
|
||||
|
@ -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); }
|
||||
|
Loading…
Reference in New Issue
Block a user