summaryrefslogtreecommitdiff
path: root/nuttx/binfmt/libnxflat/libnxflat_load.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-06-22 22:42:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-06-22 22:42:21 +0000
commitb809a139fa845066eb21a2602f1642b98f841151 (patch)
treeaeaba3641cf4294f81e58b7a46ebf20af48271b5 /nuttx/binfmt/libnxflat/libnxflat_load.c
parentf759cd068190d9a8820c1c4d57fbe03b85daa000 (diff)
downloadpx4-nuttx-b809a139fa845066eb21a2602f1642b98f841151.tar.gz
px4-nuttx-b809a139fa845066eb21a2602f1642b98f841151.tar.bz2
px4-nuttx-b809a139fa845066eb21a2602f1642b98f841151.zip
Back-out one relocation type
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1926 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/binfmt/libnxflat/libnxflat_load.c')
-rw-r--r--nuttx/binfmt/libnxflat/libnxflat_load.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/binfmt/libnxflat/libnxflat_load.c b/nuttx/binfmt/libnxflat/libnxflat_load.c
index 54b87992c..022ad7f7d 100644
--- a/nuttx/binfmt/libnxflat/libnxflat_load.c
+++ b/nuttx/binfmt/libnxflat/libnxflat_load.c
@@ -64,15 +64,15 @@
#if defined(CONFIG_DEBUG_VERBOSE) && defined(CONFIG_DEBUG_BINFMT)
static const char g_relocrel32i[] = "RELOC_REL32I";
static const char g_relocrel32d[] = "RELOC_REL32D";
-static const char g_relocrel32id[] = "RELOC_REL32ID";
static const char g_relocabs32[] = "RELOC_AB32";
+static const char g_undefined[] = "UNDEFINED";
static const char *g_reloctype[] =
{
g_relocrel32i,
g_relocrel32d,
- g_relocrel32id,
- g_relocabs32
+ g_relocabs32.
+ g_undefined
};
# define RELONAME(rl) g_reloctype[NXFLAT_RELOC_TYPE(rl)]
#else