mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-25 09:26:16 +03:00
Style consistency
This commit is contained in:
parent
7df7cb25ee
commit
b1f22344b4
|
@ -21,13 +21,11 @@
|
|||
|
||||
#endif
|
||||
|
||||
void ImagingSectionEnter(ImagingSectionCookie* cookie)
|
||||
{
|
||||
void ImagingSectionEnter(ImagingSectionCookie* cookie) {
|
||||
*cookie = (PyThreadState *) PyEval_SaveThread();
|
||||
}
|
||||
|
||||
void ImagingSectionLeave(ImagingSectionCookie* cookie)
|
||||
{
|
||||
void ImagingSectionLeave(ImagingSectionCookie* cookie) {
|
||||
PyEval_RestoreThread((PyThreadState*) *cookie);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user