Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 9380f00

Browse files
author
Anselm Kruis
committed
Stackless issue #242: whitespace fixes proposed by patchcheck
1 parent 58613bc commit 9380f00

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Include/slp_structs.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -151,26 +151,26 @@ typedef struct _cstack {
151151
int nesting_level;
152152
PyThreadState *tstate;
153153
#ifdef SLP_SEH32
154-
/* SEH handler on Win32
155-
* The correct type is DWORD, but we do not want to include <windows.h>.
156-
* Instead we use a compile time assertion to ensure, that we use an
157-
* equivalent type.
158-
*/
154+
/* SEH handler on Win32
155+
* The correct type is DWORD, but we do not want to include <windows.h>.
156+
* Instead we use a compile time assertion to ensure, that we use an
157+
* equivalent type.
158+
*/
159159
unsigned long exception_list;
160160
#endif
161161
/* The end-address (sic!) of the stack stored in the cstack.
162162
*/
163163
intptr_t *startaddr;
164164
intptr_t stack[
165165
#if defined(_WINDOWS_) && defined(SLP_SEH32)
166-
/* Assert the equivalence of DWORD and unsigned long. If <windows.h>
167-
* is included, _WINDOWS_ is defined.
168-
* Py_BUILD_ASSERT_EXPR needs an expression and this is the only one.
169-
*/
170-
Py_BUILD_ASSERT_EXPR(sizeof(unsigned long) == sizeof(DWORD)) +
171-
Py_BUILD_ASSERT_EXPR(((DWORD)-1) > 0) + /* signedness */
166+
/* Assert the equivalence of DWORD and unsigned long. If <windows.h>
167+
* is included, _WINDOWS_ is defined.
168+
* Py_BUILD_ASSERT_EXPR needs an expression and this is the only one.
169+
*/
170+
Py_BUILD_ASSERT_EXPR(sizeof(unsigned long) == sizeof(DWORD)) +
171+
Py_BUILD_ASSERT_EXPR(((DWORD)-1) > 0) + /* signedness */
172172
#endif
173-
1];
173+
1];
174174
} PyCStackObject;
175175

176176

0 commit comments

Comments
 (0)