Tweak the oshmctl() compile fix: convert the K&R definition to ANSI.
This commit is contained in:
parent
fbabb378d7
commit
59a38c2e5e
@ -116,10 +116,6 @@ struct shmmap_state {
|
||||
int shmid;
|
||||
};
|
||||
|
||||
#if defined(__i386__) && (defined(COMPAT_FREEBSD4) || defined(COMPAT_43))
|
||||
struct oshmctl_args;
|
||||
static int oshmctl(struct thread *td, struct oshmctl_args *uap);
|
||||
#endif
|
||||
static void shm_deallocate_segment(struct shmid_kernel *);
|
||||
static int shm_find_segment_by_key(key_t);
|
||||
static struct shmid_kernel *shm_find_segment_by_shmid(int);
|
||||
@ -901,9 +897,7 @@ struct oshmctl_args {
|
||||
};
|
||||
|
||||
static int
|
||||
oshmctl(td, uap)
|
||||
struct thread *td;
|
||||
struct oshmctl_args *uap;
|
||||
oshmctl(struct thread *td, struct oshmctl_args *uap)
|
||||
{
|
||||
#ifdef COMPAT_43
|
||||
int error = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user