diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-18 07:42:00 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-18 07:42:00 +0000 |
commit | 1a715e487dc6b37a996ff3041c332765dbba45a7 (patch) | |
tree | 6b455d7f87c0b7b90a01cc4dd8afcd1217d9f069 | |
parent | 7b54dc788c1bafcc0452790403758f84f0852854 (diff) | |
download | busybox-w32-1a715e487dc6b37a996ff3041c332765dbba45a7.tar.gz busybox-w32-1a715e487dc6b37a996ff3041c332765dbba45a7.tar.bz2 busybox-w32-1a715e487dc6b37a996ff3041c332765dbba45a7.zip |
- fix compilation for mips (Brian Daniels)
-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 77d36e160..01b619f7e 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c | |||
@@ -841,7 +841,7 @@ arch_apply_relocation(struct obj_file *f, | |||
841 | { | 841 | { |
842 | #if defined(__arm__) || defined(__i386__) || defined(__mc68000__) \ | 842 | #if defined(__arm__) || defined(__i386__) || defined(__mc68000__) \ |
843 | || defined(__sh__) || defined(__s390__) || defined(__x86_64__) \ | 843 | || defined(__sh__) || defined(__s390__) || defined(__x86_64__) \ |
844 | || defined(__powerpc__) | 844 | || defined(__powerpc__) || defined(__mips__) |
845 | struct arch_file *ifile = (struct arch_file *) f; | 845 | struct arch_file *ifile = (struct arch_file *) f; |
846 | #endif | 846 | #endif |
847 | enum obj_reloc ret = obj_reloc_ok; | 847 | enum obj_reloc ret = obj_reloc_ok; |