Source-Changes-HG archive

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

[src/trunk]: src/tests/libexec/ld.elf_so Trailing whitespace



details:   https://anonhg.NetBSD.org/src/rev/e1bdfdc17d81
branches:  trunk
changeset: 359606:e1bdfdc17d81
user:      skrll <skrll%NetBSD.org@localhost>
date:      Fri Jan 14 07:34:07 2022 +0000

description:
Trailing whitespace

diffstat:

 tests/libexec/ld.elf_so/t_dlerror-false.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (39 lines):

diff -r 456fca583f1e -r e1bdfdc17d81 tests/libexec/ld.elf_so/t_dlerror-false.c
--- a/tests/libexec/ld.elf_so/t_dlerror-false.c Fri Jan 14 07:21:53 2022 +0000
+++ b/tests/libexec/ld.elf_so/t_dlerror-false.c Fri Jan 14 07:34:07 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: t_dlerror-false.c,v 1.2 2017/01/13 21:30:42 christos Exp $     */
+/*     $NetBSD: t_dlerror-false.c,v 1.3 2022/01/14 07:34:07 skrll Exp $        */
 
 /*
  * Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -46,9 +46,9 @@
 {
        void *handle, *sym;
        char *error;
-       
+
        /*
-        * 
+        *
         * Test for dlerror() being set by a successful library open.
         * Requires that the rpath be set to something that does not
         * include libm.so.
@@ -58,7 +58,7 @@
        error = dlerror();
        ATF_CHECK(error == NULL);
        ATF_CHECK(handle != NULL);
-       
+
        sym = dlsym(handle, "sin");
        error = dlerror();
        ATF_CHECK(sym != NULL);
@@ -68,7 +68,7 @@
        error = dlerror();
 
        ATF_CHECK(error == NULL);
-       
+
 }
 
 ATF_TP_ADD_TCS(tp)



Home | Main Index | Thread Index | Old Index