about summary refs log tree commit diff
path: root/elf/dl-runtime.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-11-07 23:21:00 +0000
committerUlrich Drepper <drepper@redhat.com>2001-11-07 23:21:00 +0000
commit6ed623f848489d5946b1caf61a8a5061bc933b0d (patch)
tree173a3d28379c9c4acd48582f4addf654fd953dab /elf/dl-runtime.c
parentfb0356b9d6471b69e0160edacb13845762b2c510 (diff)
downloadglibc-6ed623f848489d5946b1caf61a8a5061bc933b0d.tar.gz
glibc-6ed623f848489d5946b1caf61a8a5061bc933b0d.tar.xz
glibc-6ed623f848489d5946b1caf61a8a5061bc933b0d.zip
Update.
2001-11-07  Ulrich Drepper  <drepper@redhat.com>

	* elf/dl-version.c (match_symbol): Optimize error handling for size.
	(_dl_check_map_versions): Likewise.
Diffstat (limited to 'elf/dl-runtime.c')
-rw-r--r--elf/dl-runtime.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c
index d9c99c4785..2f5832426b 100644
--- a/elf/dl-runtime.c
+++ b/elf/dl-runtime.c
@@ -105,8 +105,8 @@ fixup (
     }
   else
     {
-    /* We already found the symbol.  The module (and therefore its load
-       address) is also known.  */
+      /* We already found the symbol.  The module (and therefore its load
+	 address) is also known.  */
       value = l->l_addr + sym->st_value;
 #ifdef DL_LOOKUP_RETURNS_MAP
       result = l;
@@ -198,11 +198,11 @@ profile_fixup (
 	}
       else
 	{
-	/* We already found the symbol.  The module (and therefore its load
-	   address) is also known.  */
-	value = l->l_addr + sym->st_value;
+	  /* We already found the symbol.  The module (and therefore its load
+	     address) is also known.  */
+	  value = l->l_addr + sym->st_value;
 #ifdef DL_LOOKUP_RETURNS_MAP
-	result = l;
+	  result = l;
 #endif
 	}
       /* And now perhaps the relocation addend.  */