summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-09-29 10:17:51 -0600
committerKarl Williamson <khw@cpan.org>2022-09-30 07:03:48 -0600
commit4fdd7e046a16217cfb5dc9f9eaf9ff15e5c6c042 (patch)
tree7ffdfc66e45b8d74d743d73e7ebca417deb88596 /thread.h
parent85a4f4c4517f44d3809493240f1a9b503244c7ad (diff)
downloadperl-4fdd7e046a16217cfb5dc9f9eaf9ff15e5c6c042.tar.gz
thread.h: White space only
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/thread.h b/thread.h
index fdc4e8da1b..54d9866bc7 100644
--- a/thread.h
+++ b/thread.h
@@ -397,12 +397,13 @@ extern PERL_THREAD_LOCAL void *PL_current_context;
/* We must also call pthread_setspecific() always, as C++ code has to read it
* with pthreads (the #else side just below) */
-# define PERL_SET_CONTEXT(t) \
- STMT_START { \
- int _eC_; \
- if ((_eC_ = pthread_setspecific(PL_thr_key, PL_current_context = (void *)(t)))) \
+# define PERL_SET_CONTEXT(t) \
+ STMT_START { \
+ int _eC_; \
+ if ((_eC_ = pthread_setspecific(PL_thr_key, \
+ PL_current_context = (void *)(t)))) \
Perl_croak_nocontext("panic: pthread_setspecific (%d) [%s:%d]", \
- _eC_, __FILE__, __LINE__); \
+ _eC_, __FILE__, __LINE__); \
} STMT_END
#else