summaryrefslogtreecommitdiff
path: root/dlfcn/default.c
diff options
context:
space:
mode:
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)