summaryrefslogtreecommitdiff
path: root/sysdeps/generic/pt-atfork.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-03-28 01:19:22 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-03-28 01:19:22 +0200
commit4b90d3f6146154638ffbe227da48e9af0dd2a803 (patch)
tree7e034f416b4b7e95a76b99418df21e64e795e22a /sysdeps/generic/pt-atfork.c
parentb1f57fa0cf5515263bebcefe1044995ebaf9a1f3 (diff)
Fix coding style
Diffstat (limited to 'sysdeps/generic/pt-atfork.c')
-rw-r--r--sysdeps/generic/pt-atfork.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/generic/pt-atfork.c b/sysdeps/generic/pt-atfork.c
index d1f3086..036427d 100644
--- a/sysdeps/generic/pt-atfork.c
+++ b/sysdeps/generic/pt-atfork.c
@@ -21,13 +21,13 @@
#include <fork.h>
/* This is defined by newer gcc version unique for each module. */
-extern void *__dso_handle __attribute__ ((__weak__,
- __visibility__ ("hidden")));
+extern void *__dso_handle __attribute__ ((__weak__, __visibility__ ("hidden")));
int
pthread_atfork (void (*prepare) (void),
void (*parent) (void),
void (*child) (void))
{
- return __register_atfork (prepare, parent, child, &__dso_handle == NULL ? NULL : __dso_handle);
+ return __register_atfork (prepare, parent, child,
+ &__dso_handle == NULL ? NULL : __dso_handle);
}