diff options
author | kib <kib@FreeBSD.org> | 2010-08-23 15:18:35 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2010-08-23 15:18:35 +0000 |
commit | 14144ebea8f9236e6754fdfca897ed79c43e4da3 (patch) | |
tree | 3cb0d2cf072280895d84964b00b3349bef87684a /lib/libc/stdlib | |
parent | 415098b7a0b80ee2df0537585e6978bff2e8d28e (diff) | |
download | FreeBSD-src-14144ebea8f9236e6754fdfca897ed79c43e4da3.zip FreeBSD-src-14144ebea8f9236e6754fdfca897ed79c43e4da3.tar.gz |
Style.
MFC after: 3 days
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/atexit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/atexit.c b/lib/libc/stdlib/atexit.c index aba3edd..a7a9a32 100644 --- a/lib/libc/stdlib/atexit.c +++ b/lib/libc/stdlib/atexit.c @@ -120,7 +120,7 @@ atexit(void (*func)(void)) int error; fn.fn_type = ATEXIT_FN_STD; - fn.fn_ptr.std_func = func;; + fn.fn_ptr.std_func = func; fn.fn_arg = NULL; fn.fn_dso = NULL; @@ -139,7 +139,7 @@ __cxa_atexit(void (*func)(void *), void *arg, void *dso) int error; fn.fn_type = ATEXIT_FN_CXA; - fn.fn_ptr.cxa_func = func;; + fn.fn_ptr.cxa_func = func; fn.fn_arg = arg; fn.fn_dso = dso; |