about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@redhat.com>2015-07-14 19:44:55 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2015-07-14 19:44:55 +0530
commit8e7e971a91f03353189d37909a467b3fb6c6ec92 (patch)
treeaf82df321f92339d3814bc017c07ce6feddfbfe7
parent82641e16aa83c693974297951e23ba08a3e89652 (diff)
downloadglibc-8e7e971a91f03353189d37909a467b3fb6c6ec92.tar.gz
glibc-8e7e971a91f03353189d37909a467b3fb6c6ec92.tar.xz
glibc-8e7e971a91f03353189d37909a467b3fb6c6ec92.zip
Whitespace fix in tst-tls-atexit.c
-rw-r--r--ChangeLog4
-rw-r--r--stdlib/tst-tls-atexit.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dfef5e0f60..78e16f5691 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-07-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
+
+	* stdlib/tst-tls-atexit.c (load): Fix up whitespace.
+
 2015-04-01  Wilco Dijkstra  <wdijkstr@arm.com>
 
 	* sysdeps/aarch64/fpu/math_private.h
diff --git a/stdlib/tst-tls-atexit.c b/stdlib/tst-tls-atexit.c
index 5ee04a88c1..974264dcd7 100644
--- a/stdlib/tst-tls-atexit.c
+++ b/stdlib/tst-tls-atexit.c
@@ -40,7 +40,7 @@ load (void *u)
       return (void *) (uintptr_t) 1;
     }
 
-  void (*foo) (void) = (void (*) (void)) dlsym(handle, "do_foo");
+  void (*foo) (void) = (void (*) (void)) dlsym (handle, "do_foo");
 
   if (foo == NULL)
     {