From 4fdd7e046a16217cfb5dc9f9eaf9ff15e5c6c042 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Thu, 29 Sep 2022 10:17:51 -0600 Subject: thread.h: White space only --- thread.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'thread.h') 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 -- cgit v1.2.1