svn commit: trunk/uClibc/ldso/ldso

aldot at uclibc.org aldot at uclibc.org
Fri May 30 14:11:01 UTC 2008


Author: aldot
Date: 2008-05-30 07:11:00 -0700 (Fri, 30 May 2008)
New Revision: 22119

Log:
- Avoid warning about missing brace.


Modified:
   trunk/uClibc/ldso/ldso/dl-elf.c


Changeset:
Modified: trunk/uClibc/ldso/ldso/dl-elf.c
===================================================================
--- trunk/uClibc/ldso/ldso/dl-elf.c	2008-05-30 13:45:38 UTC (rev 22118)
+++ trunk/uClibc/ldso/ldso/dl-elf.c	2008-05-30 14:11:00 UTC (rev 22119)
@@ -587,11 +587,11 @@
 					return NULL;
 				}
 
-				if (! piclib2map)
+				if (! piclib2map) {
 				  DL_INIT_LOADADDR_HDR
 				    (lib_loadaddr, status
 				     + (ppnt->p_vaddr & ADDR_ALIGN), ppnt);
-
+				}
 				/* Now we want to allocate and
 				   zero-out any data from the end of
 				   the region we mapped in from the
@@ -780,9 +780,9 @@
 		return goof;
 	tpnt = rpnt->dyn;
 
-	if (!(tpnt->init_flag & RELOCS_DONE))
+	if (!(tpnt->init_flag & RELOCS_DONE)) {
 		_dl_if_debug_dprint("relocation processing: %s\n", tpnt->libname);
-
+	}
 	if (unlikely(tpnt->dynamic_info[UNSUPPORTED_RELOC_TYPE])) {
 		_dl_if_debug_dprint("%s: can't handle %s relocation records\n",
 				_dl_progname, UNSUPPORTED_RELOC_STR);




More information about the uClibc-cvs mailing list