linux(4): Cleanup empty lines.

MFC after:		2 weeks
This commit is contained in:
Dmitry Chagin 2022-03-31 21:23:12 +03:00
parent 4e1e83461b
commit 09d60bfae5
4 changed files with 1 additions and 4 deletions

View File

@ -45,5 +45,4 @@ void linux_to_bsd_poll_events(struct thread *td, int fd,
short lev, short *bev);
void bsd_to_linux_poll_events(short bev, short *lev);
#endif /* _LINUX_COMMON_H_ */

View File

@ -189,7 +189,6 @@ linux_proc_init(struct thread *td, struct thread *newtd, bool init_thread)
pem->persona = 0;
pem->oom_score_adj = 0;
}
}
void

View File

@ -727,7 +727,7 @@ linux_copyout_sockaddr(const struct sockaddr *sa, void *uaddr, size_t len)
error = bsd_to_linux_sockaddr(sa, &lsa, len);
if (error != 0)
return (error);
error = copyout(lsa, uaddr, len);
free(lsa, M_SONAME);

View File

@ -800,4 +800,3 @@ linux_statx(struct thread *td, struct linux_statx_args *args)
return (error);
}