Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/libexec/ld.elf_so Remove trailing whitespace



details:   https://anonhg.NetBSD.org/src/rev/1f42ec5fb3c4
branches:  trunk
changeset: 786600:1f42ec5fb3c4
user:      skrll <skrll%NetBSD.org@localhost>
date:      Fri May 03 10:27:05 2013 +0000

description:
Remove trailing whitespace

diffstat:

 libexec/ld.elf_so/arch/arm/find_exidx.c |   6 +++---
 libexec/ld.elf_so/symbol.c              |  10 +++++-----
 2 files changed, 8 insertions(+), 8 deletions(-)

diffs (75 lines):

diff -r 3d9e381617fb -r 1f42ec5fb3c4 libexec/ld.elf_so/arch/arm/find_exidx.c
--- a/libexec/ld.elf_so/arch/arm/find_exidx.c   Fri May 03 09:37:17 2013 +0000
+++ b/libexec/ld.elf_so/arch/arm/find_exidx.c   Fri May 03 10:27:05 2013 +0000
@@ -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 @@
 
        _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 @@
        }
 
        /*
-        * 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) {
diff -r 3d9e381617fb -r 1f42ec5fb3c4 libexec/ld.elf_so/symbol.c
--- a/libexec/ld.elf_so/symbol.c        Fri May 03 09:37:17 2013 +0000
+++ b/libexec/ld.elf_so/symbol.c        Fri May 03 10:27:05 2013 +0000
@@ -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 @@
        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 @@
                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 @@
                        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)



Home | Main Index | Thread Index | Old Index