about summary refs log tree commit diff
path: root/dlfcn/default.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-06-05 20:44:03 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-06-05 20:44:03 +0000
commit9c84384cc18ff589233628c193953ca8d7a39f5c (patch)
tree95d1f5aee409b208db7545d678012eeae9559fae /dlfcn/default.c
parent5556231db2301917cd14a7450de4eba2368c9763 (diff)
downloadglibc-9c84384cc18ff589233628c193953ca8d7a39f5c.tar.gz
glibc-9c84384cc18ff589233628c193953ca8d7a39f5c.tar.xz
glibc-9c84384cc18ff589233628c193953ca8d7a39f5c.zip
Remove trailing whitespace.
Diffstat (limited to 'dlfcn/default.c')
-rw-r--r--dlfcn/default.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dlfcn/default.c b/dlfcn/default.c
index eeed5a950a..612ab79b12 100644
--- a/dlfcn/default.c
+++ b/dlfcn/default.c
@@ -14,7 +14,7 @@ main (int argc, char *argv[])
   void *p;
   int result = 0;
   Dl_info info;
-  
+
   dladdr(main, &info);
   if (info.dli_fname == NULL)
     {
@@ -28,7 +28,7 @@ main (int argc, char *argv[])
     }
   else
     printf ("%s: dladdr returned correct dli_fname\n", __FILE__);
-      
+
   /* Find function `main'.  */
   p = dlsym (RTLD_DEFAULT, "main");
   if (p == NULL)