Module Name:    src
Committed By:   skrll
Date:           Fri May  3 10:27:06 UTC 2013

Modified Files:
        src/libexec/ld.elf_so: symbol.c
        src/libexec/ld.elf_so/arch/arm: find_exidx.c

Log Message:
Remove trailing whitespace


To generate a diff of this commit:
cvs rdiff -u -r1.62 -r1.63 src/libexec/ld.elf_so/symbol.c
cvs rdiff -u -r1.2 -r1.3 src/libexec/ld.elf_so/arch/arm/find_exidx.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/libexec/ld.elf_so/symbol.c
diff -u src/libexec/ld.elf_so/symbol.c:1.62 src/libexec/ld.elf_so/symbol.c:1.63
--- src/libexec/ld.elf_so/symbol.c:1.62	Wed Apr 24 22:37:20 2013
+++ src/libexec/ld.elf_so/symbol.c	Fri May  3 10:27:05 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: symbol.c,v 1.62 2013/04/24 22:37:20 matt Exp $	 */
+/*	$NetBSD: symbol.c,v 1.63 2013/05/03 10:27:05 skrll Exp $	 */
 
 /*
  * Copyright 1996 John D. Polstra.
@@ -40,7 +40,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: symbol.c,v 1.62 2013/04/24 22:37:20 matt Exp $");
+__RCSID("$NetBSD: symbol.c,v 1.63 2013/05/03 10:27:05 skrll Exp $");
 #endif /* not lint */
 
 #include <err.h>
@@ -149,7 +149,7 @@ _rtld_symlook_list(const char *name, uns
 	const Elf_Sym *def;
 	const Obj_Entry *defobj;
 	const Objlist_Entry *elm;
-	
+
 	def = NULL;
 	defobj = NULL;
 	SIMPLEQ_FOREACH(elm, objlist, link) {
@@ -433,7 +433,7 @@ _rtld_find_symdef(unsigned long symnum, 
 		def = ref;
 		defobj = refobj;
 	}
-		
+
 	/*
 	 * If we found no definition and the reference is weak, treat the
 	 * symbol as having the value zero.
@@ -546,7 +546,7 @@ _rtld_symlook_default(const char *name, 
 			defobj = obj;
 		}
 	}
-	
+
 	/* Search all dlopened DAGs containing the referencing object. */
 	SIMPLEQ_FOREACH(elm, &refobj->dldags, link) {
 		if (def != NULL && ELF_ST_BIND(def->st_info) != STB_WEAK)

Index: src/libexec/ld.elf_so/arch/arm/find_exidx.c
diff -u src/libexec/ld.elf_so/arch/arm/find_exidx.c:1.2 src/libexec/ld.elf_so/arch/arm/find_exidx.c:1.3
--- src/libexec/ld.elf_so/arch/arm/find_exidx.c:1.2	Thu Apr 25 13:15:26 2013
+++ src/libexec/ld.elf_so/arch/arm/find_exidx.c	Fri May  3 10:27:06 2013
@@ -29,7 +29,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: find_exidx.c,v 1.2 2013/04/25 13:15:26 matt Exp $");
+__RCSID("$NetBSD: find_exidx.c,v 1.3 2013/05/03 10:27:06 skrll Exp $");
 #endif /* not lint */
 
 #include "debug.h"
@@ -46,7 +46,7 @@ __gnu_Unwind_Find_exidx(_Unwind_Ptr pc, 
 
 	_rtld_shared_enter();
 
-	vaddr_t va = (vaddr_t)pc; 
+	vaddr_t va = (vaddr_t)pc;
 	for (obj = _rtld_objlist; obj != NULL; obj = obj->next) {
 		/*
 		 * If the address we are looking for is inside this object,
@@ -58,7 +58,7 @@ __gnu_Unwind_Find_exidx(_Unwind_Ptr pc, 
 	}
 
 	/*
-	 * If we found an object and it has some exception data, we 
+	 * If we found an object and it has some exception data, we
 	 * need to see if the address matches a PT_LOAD section.
 	 */
 	if (obj != NULL && obj->exidx_start != NULL) {

Reply via email to