diff options
author | Roland McGrath <roland@gnu.org> | 1995-11-21 20:01:48 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-11-21 20:01:48 +0000 |
commit | 4b57034168b70201511ee7e85353b882aa3f15e8 (patch) | |
tree | 3c9fd9e427c143ec4adc7ef6e171126cb8bac263 /exec | |
parent | d4268169205fbbf497ec733a31188abfae882996 (diff) |
(load_section): Undo boneheaded last change.
Diffstat (limited to 'exec')
-rw-r--r-- | exec/exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exec/exec.c b/exec/exec.c index 00bbeac0..e267c70d 100644 --- a/exec/exec.c +++ b/exec/exec.c @@ -112,10 +112,10 @@ check_section (bfd *bfd, asection *sec, void *userdata) static void load_section (void *section, struct execdata *u) { - volatile vm_address_t addr = 0; + vm_address_t addr = 0; vm_offset_t filepos = 0; vm_size_t filesz = 0, memsz = 0; - volatile vm_prot_t vm_prot; + vm_prot_t vm_prot; int anywhere; vm_address_t mask = 0; #ifdef BFD |