diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2009-09-30 19:43:38 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-30 18:45:50 +0000 |
commit | 6ece4df63bd06089f0436160abb6fd14c4eef105 (patch) | |
tree | 7d81733e44fd9533d3c58a1cbe360075235f4cd2 /bsd-user | |
parent | 6ab00cee7024bd55a4a5159a6cfae46984099184 (diff) |
elfload: fix coding style nit
Put space between = and * when dereferencing a pointer,
to avoid confusion with old-style "*="
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'bsd-user')
-rw-r--r-- | bsd-user/elfload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bsd-user/elfload.c b/bsd-user/elfload.c index 19981f0a97..33ddcc4840 100644 --- a/bsd-user/elfload.c +++ b/bsd-user/elfload.c @@ -1268,7 +1268,7 @@ int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs, } if (retval >= 0) { interp_ex = *((struct exec *) bprm->buf); /* aout exec-header */ - interp_elf_ex=*((struct elfhdr *) bprm->buf); /* elf exec-header */ + interp_elf_ex = *((struct elfhdr *) bprm->buf); /* elf exec-header */ } if (retval < 0) { perror("load_elf_binary3"); |