diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-16 16:00:38 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-16 16:00:38 +0000 |
commit | 825968f92c603357e2e1e1d73c3ec26d89004381 (patch) | |
tree | b415942d2b2c1658a40dce3dbce3678d6cc0ff41 /modutils/insmod.c | |
parent | 1b23773e2669679b12b0af778cce2749ea2dd97e (diff) |
- fix compilation on x86_64
Diffstat (limited to 'modutils/insmod.c')
-rw-r--r-- | modutils/insmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index 0a74ba0e5..9f21003d8 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -841,7 +841,7 @@ arch_apply_relocation(struct obj_file *f, ElfW(RelM) *rel, ElfW(Addr) v) { #if defined(__arm__) || defined(__i386__) || defined(__mc68000__) \ - || defined(__sh__) || defined(__s390__) + || defined(__sh__) || defined(__s390__) || defined(__x86_64__) struct arch_file *ifile = (struct arch_file *) f; #endif enum obj_reloc ret = obj_reloc_ok; |