Skip to content

Commit c791052

Browse files
committed
nit
1 parent 1595b21 commit c791052

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Include/object.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,9 +284,9 @@ _Py_ThreadId(void)
284284
// for s390 from long time ago.
285285
tid = (uintptr_t)__builtin_thread_pointer();
286286
#elif defined(thread_local) || defined(__GNUC__)
287-
# if defined(thread_local)
287+
#if defined(thread_local)
288288
static thread_local int __tp = 0;
289-
#elif defined(__GNUC__)
289+
#else
290290
// Assume that we only support C11 compilers.
291291
static __thread int __tp = 0;
292292
#endif

0 commit comments

Comments
 (0)