aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@intel.com>2013-01-02 13:17:03 +0000
committerMatt Fleming <matt.fleming@intel.com>2013-01-02 13:32:36 +0000
commit7c40be9a942b9c1be14617239bc1f184f832f1b6 (patch)
treeb4e657660f694579ade02e842f41f5899df02c09
parent10f6cf6eef0a7da7dad1933efdbfb101155792d0 (diff)
downloadsyslinux-7c40be9a942b9c1be14617239bc1f184f832f1b6.tar.gz
syslinux-7c40be9a942b9c1be14617239bc1f184f832f1b6.tar.xz
syslinux-7c40be9a942b9c1be14617239bc1f184f832f1b6.zip
com32: Fix merge botch
Somehow to the printf() statement that warns about undefined symbols when loading modules was deleted when syslinux-5.00 was merged, so restore it. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
-rw-r--r--com32/lib/sys/module/common.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/com32/lib/sys/module/common.c b/com32/lib/sys/module/common.c
index 5b0d9ee8..2ecc9e59 100644
--- a/com32/lib/sys/module/common.c
+++ b/com32/lib/sys/module/common.c
@@ -368,6 +368,7 @@ int check_symbols(struct elf_module *module)
if (strong_count == 0 && weak_count == 0)
{
DBG_PRINT("Symbol %s is undefined\n", crt_name);
+ printf("Undef symbol FAIL: %s\n",crt_name);
return -1;
}
}