summaryrefslogtreecommitdiffstats
path: root/Modules/_decimal/_decimal.c
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2012-03-21 19:21:20 (GMT)
committerStefan Krah <skrah@bytereef.org>2012-03-21 19:21:20 (GMT)
commit7cc5521d402316cd4faaa9442f323b3a946ad44b (patch)
treec43b3fce3eb9f5a5a13d7f94ad2ea90b7973069f /Modules/_decimal/_decimal.c
parent851a07e5c25e9ae12695524f2d022c1638478138 (diff)
downloadcpython-7cc5521d402316cd4faaa9442f323b3a946ad44b.zip
cpython-7cc5521d402316cd4faaa9442f323b3a946ad44b.tar.gz
cpython-7cc5521d402316cd4faaa9442f323b3a946ad44b.tar.bz2
Whitespace.
Diffstat (limited to 'Modules/_decimal/_decimal.c')
-rw-r--r--Modules/_decimal/_decimal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_decimal/_decimal.c b/Modules/_decimal/_decimal.c
index 8a439c4..ad37092 100644
--- a/Modules/_decimal/_decimal.c
+++ b/Modules/_decimal/_decimal.c
@@ -1585,14 +1585,14 @@ current_context(void)
#define CURRENT_CONTEXT(ctxobj) \
ctxobj = current_context(); \
if (ctxobj == NULL) { \
- return NULL; \
+ return NULL; \
}
/* ctx := pointer to the mpd_context_t struct of the current context */
#define CURRENT_CONTEXT_ADDR(ctx) { \
PyObject *_c_t_x_o_b_j = current_context(); \
if (_c_t_x_o_b_j == NULL) { \
- return NULL; \
+ return NULL; \
} \
ctx = CTX(_c_t_x_o_b_j); \
}