From a7d6b6eebf761f87ec3e5972c99ca0aedf312acd Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Fri, 3 Jul 2009 13:48:42 +0000 Subject: [PATCH] 2.5 Windows #ifdef code missed semicolon. --- source/blender/python/intern/bpy_interface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index fbd8339741e..62e374953b0 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -162,14 +162,14 @@ void BPY_start_python_path(void) #if (defined(WIN32) || defined(WIN64)) #if defined(FREE_WINDOWS) - sprintf(py_path, "PYTHONPATH=%s", py_path_bundle) + sprintf(py_path, "PYTHONPATH=%s", py_path_bundle); putenv(py_path); #else _putenv_s("PYTHONPATH", py_path_bundle); #endif #else #ifdef __sgi - sprintf(py_path, "PYTHONPATH=%s", py_path_bundle) + sprintf(py_path, "PYTHONPATH=%s", py_path_bundle); putenv(py_path); #else setenv("PYTHONPATH", py_path_bundle, 1);