Trim trailing whitespace (mostly introduced in r313407).

Sponsored by:	DARPA / AFRL
This commit is contained in:
John Baldwin 2017-02-08 17:45:23 +00:00
parent 371ce0ebc2
commit 3ff519254c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=313449
2 changed files with 3 additions and 3 deletions

View file

@ -315,7 +315,7 @@ struct thread {
} td_state; /* (t) thread state */
union {
register_t tdu_retval[2];
off_t tdu_off;
off_t tdu_off;
} td_uretoff; /* (k) Syscall aux returns. */
#define td_retval td_uretoff.tdu_retval
u_int td_cowgen; /* (k) Generation of COW pointers. */
@ -619,7 +619,7 @@ struct proc {
u_int p_xsig; /* (c) Stop/kill sig. */
uint16_t p_elf_machine; /* (x) ELF machine type */
uint64_t p_elf_flags; /* (x) ELF flags */
/* End area that is copied on creation. */
#define p_endcopy p_elf_flags
struct pgrp *p_pgrp; /* (c + e) Pointer to process group. */

View file

@ -434,7 +434,7 @@ elf_puthdr(int efd, pid_t pid, vm_map_entry_t map, void *hdr, size_t hdrsize,
err(1, "Failed to re-read ELF header");
else if (cnt != sizeof(binhdr))
errx(1, "Failed to re-read ELF header");
ehdr = (Elf_Ehdr *)hdr;
ehdr->e_ident[EI_MAG0] = ELFMAG0;