From 38add3698930bde72d1548097b95334f0be449f1 Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 24 Jun 2009 20:49:43 +0000 Subject: Fix DEBUG-on compilation errors git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1940 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/binfmt/libnxflat/libnxflat_bind.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nuttx/binfmt/libnxflat/libnxflat_bind.c') diff --git a/nuttx/binfmt/libnxflat/libnxflat_bind.c b/nuttx/binfmt/libnxflat/libnxflat_bind.c index 2afb92f12..86d9f9a20 100644 --- a/nuttx/binfmt/libnxflat/libnxflat_bind.c +++ b/nuttx/binfmt/libnxflat/libnxflat_bind.c @@ -343,7 +343,7 @@ static inline int nxflat_bindimports(FAR struct nxflat_loadinfo_s *loadinfo, { /* It does.. make sure that exported symbols are provided */ - DEBUGASSERT(symtab && nexports > 0); + DEBUGASSERT(exports && nexports > 0); /* If non-zero, the value of the imported symbol list that we get * from the header is a file offset. We will have to convert this @@ -393,7 +393,7 @@ static inline int nxflat_bindimports(FAR struct nxflat_loadinfo_s *loadinfo, imports[i].i_funcaddress = (uint32)symbol->sym_value; bvdbg("Bound imported function '%s' to address %08x\n", - symname, imports[i].function_address); + symname, imports[i].i_funcaddress); } } -- cgit v1.2.3