aboutsummaryrefslogtreecommitdiff
path: root/modutils
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-05-26 12:06:38 +0000
committerEric Andersen <andersen@codepoet.org>2004-05-26 12:06:38 +0000
commita6f6a95ba45e094bbee6fd0895925a992e4a29cd (patch)
treea009619db2c7495b97c309e27135f9fabd553c0b /modutils
parent42f8883c71b908409bee7f4c77e77b9bef5d20d7 (diff)
downloadbusybox-a6f6a95ba45e094bbee6fd0895925a992e4a29cd.tar.gz
oops
Diffstat (limited to 'modutils')
-rw-r--r--modutils/insmod.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c
index 5063be564..d98341e7b 100644
--- a/modutils/insmod.c
+++ b/modutils/insmod.c
@@ -296,7 +296,7 @@ extern int insmod_ng_main( int argc, char **argv);
#ifndef MODUTILS_MODULE_H
static const int MODUTILS_MODULE_H = 1;
-#ident "$Id: insmod.c,v 1.118 2004/05/26 11:38:46 andersen Exp $"
+#ident "$Id: insmod.c,v 1.119 2004/05/26 12:06:38 andersen Exp $"
/* This file contains the structures used by the 2.0 and 2.1 kernels.
We do not use the kernel headers directly because we do not wish
@@ -517,7 +517,7 @@ int delete_module(const char *);
#ifndef MODUTILS_OBJ_H
static const int MODUTILS_OBJ_H = 1;
-#ident "$Id: insmod.c,v 1.118 2004/05/26 11:38:46 andersen Exp $"
+#ident "$Id: insmod.c,v 1.119 2004/05/26 12:06:38 andersen Exp $"
/* The relocatable object is manipulated using elfin types. */
@@ -1337,7 +1337,7 @@ arch_apply_relocation(struct obj_file *f,
break;
#endif
-#elif defined(__H8300H__) || defined(__H8300S__)
+#if defined(__H8300H__) || defined(__H8300S__)
case R_H8_DIR24R8:
loc = (ElfW(Addr) *)((ElfW(Addr))loc - 1);
*loc = (*loc & 0xff000000) | ((*loc & 0xffffff) + v);