Skip to content

Commit 873d915

Browse files
committed
Code style tweaks.
1 parent 1e5db7a commit 873d915

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Include/cpython/pystate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ PyAPI_FUNC(void) PyThreadState_LeaveTracing(PyThreadState *tstate);
250250

251251
#ifdef Py_STATS
252252
#if defined(HAVE_THREAD_LOCAL) && !defined(Py_BUILD_CORE_MODULE)
253-
extern _Py_thread_local PyThreadState* _Py_tss_tstate;
253+
extern _Py_thread_local PyThreadState *_Py_tss_tstate;
254254

255255
static inline PyStats*
256256
_PyThreadState_GetStatsFast(void)

Include/cpython/pystats.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ PyAPI_FUNC(PyStats *) _PyStats_GetLocal(void);
197197

198198
#if defined(HAVE_THREAD_LOCAL) && !defined(Py_BUILD_CORE_MODULE)
199199
// use inline function version defined in cpython/pystate.h
200-
static inline PyStats* _PyThreadState_GetStatsFast(void);
200+
static inline PyStats *_PyThreadState_GetStatsFast(void);
201201
#define _PyStats_GET _PyThreadState_GetStatsFast
202202
#else
203203
#define _PyStats_GET _PyStats_GetLocal

0 commit comments

Comments
 (0)