From 2e324950b83fcdf60843b54a6a339183370f338a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 14 Apr 2018 14:37:07 +0200 Subject: patch 8.0.1709: some non-C89 code may slip through Problem: Some non-C89 code may slip through. Solution: Enforce C89 in configure. Fix detected problems. (James McCoy, closes #2735) --- src/if_python3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/if_python3.c') diff --git a/src/if_python3.c b/src/if_python3.c index b885deb049..4360fe45c5 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -815,7 +815,7 @@ python3_end(void) #endif if (Py_IsInitialized()) { - // acquire lock before finalizing + /* acquire lock before finalizing */ PyGILState_Ensure(); Py_Finalize(); -- cgit v1.2.3