summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/libs/python/src/exec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/restricted/boost/libs/python/src/exec.cpp')
-rw-r--r--contrib/restricted/boost/libs/python/src/exec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/restricted/boost/libs/python/src/exec.cpp b/contrib/restricted/boost/libs/python/src/exec.cpp
index 4e59782dbf8..43e860d992b 100644
--- a/contrib/restricted/boost/libs/python/src/exec.cpp
+++ b/contrib/restricted/boost/libs/python/src/exec.cpp
@@ -106,7 +106,7 @@ object BOOST_PYTHON_DECL exec_file(char const *filename, object global, object l
char *f = const_cast<char *>(filename);
// Let python open the file to avoid potential binary incompatibilities.
#if PY_VERSION_HEX >= 0x03040000
- FILE *fs = fopen(f, "r");
+ FILE *fs = fopen(f, "r");
#elif PY_VERSION_HEX >= 0x03000000
PyObject *fo = Py_BuildValue("s", f);
FILE *fs = _Py_fopen(fo, "r");