summaryrefslogtreecommitdiff
path: root/Include/pyfpe.h
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-11-28 17:56:10 +0200
committerGitHub <noreply@github.com>2017-11-28 17:56:10 +0200
commit598ceae876ff4a23072e59945597e945583de4ab (patch)
treea7c0c1380c40bda01c70b8bd40ba47d1b2f6d54a /Include/pyfpe.h
parent08d2b86a1058b733bb7f1ae2b55818dd9687d21c (diff)
downloadcpython-git-598ceae876ff4a23072e59945597e945583de4ab.tar.gz
bpo-32150: Expand tabs to spaces in C files. (#4583)
Diffstat (limited to 'Include/pyfpe.h')
-rw-r--r--Include/pyfpe.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/pyfpe.h b/Include/pyfpe.h
index f9a15e622b..d86cb7486c 100644
--- a/Include/pyfpe.h
+++ b/Include/pyfpe.h
@@ -135,9 +135,9 @@ extern double PyFPE_dummy(void *);
#define PyFPE_START_PROTECT(err_string, leave_stmt) \
if (!PyFPE_counter++ && setjmp(PyFPE_jbuf)) { \
- PyErr_SetString(PyExc_FloatingPointError, err_string); \
- PyFPE_counter = 0; \
- leave_stmt; \
+ PyErr_SetString(PyExc_FloatingPointError, err_string); \
+ PyFPE_counter = 0; \
+ leave_stmt; \
}
/*