Module Name:    src
Committed By:   skrll
Date:           Fri Jan 14 07:34:07 UTC 2022

Modified Files:
        src/tests/libexec/ld.elf_so: t_dlerror-false.c

Log Message:
Trailing whitespace


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/libexec/ld.elf_so/t_dlerror-false.c

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

Modified files:

Index: src/tests/libexec/ld.elf_so/t_dlerror-false.c
diff -u src/tests/libexec/ld.elf_so/t_dlerror-false.c:1.2 src/tests/libexec/ld.elf_so/t_dlerror-false.c:1.3
--- src/tests/libexec/ld.elf_so/t_dlerror-false.c:1.2	Fri Jan 13 21:30:42 2017
+++ src/tests/libexec/ld.elf_so/t_dlerror-false.c	Fri Jan 14 07:34:07 2022
@@ -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 @@ ATF_TC_BODY(rtld_dlerror_false, tc)
 {
 	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 @@ ATF_TC_BODY(rtld_dlerror_false, tc)
 	error = dlerror();
 	ATF_CHECK(error == NULL);
 	ATF_CHECK(handle != NULL);
-	
+
 	sym = dlsym(handle, "sin");
 	error = dlerror();
 	ATF_CHECK(sym != NULL);
@@ -68,7 +68,7 @@ ATF_TC_BODY(rtld_dlerror_false, tc)
 	error = dlerror();
 
 	ATF_CHECK(error == NULL);
-	
+
 }
 
 ATF_TP_ADD_TCS(tp)

Reply via email to