svn commit: r186233 - head/sys/kern
Warner Losh
imp at FreeBSD.org
Wed Dec 17 16:25:20 UTC 2008
Author: imp
Date: Wed Dec 17 16:25:20 2008
New Revision: 186233
URL: http://svn.freebsd.org/changeset/base/186233
Log:
Minor style(9) nit.
Modified:
head/sys/kern/imgact_elf.c
Modified: head/sys/kern/imgact_elf.c
==============================================================================
--- head/sys/kern/imgact_elf.c Wed Dec 17 16:19:33 2008 (r186232)
+++ head/sys/kern/imgact_elf.c Wed Dec 17 16:25:20 2008 (r186233)
@@ -894,9 +894,8 @@ __elfN(freebsd_fixup)(register_t **stack
base = (Elf_Addr *)*stack_base;
pos = base + (imgp->args->argc + imgp->args->envc + 2);
- if (args->execfd != -1) {
+ if (args->execfd != -1)
AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
- }
AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
AUXARGS_ENTRY(pos, AT_PHENT, args->phent);
AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum);
More information about the svn-src-all
mailing list