Revision: 21347
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=21347
Author:   ton
Date:     2009-07-03 15:48:42 +0200 (Fri, 03 Jul 2009)

Log Message:
-----------
2.5

Windows #ifdef code missed semicolon.

Modified Paths:
--------------
    branches/blender2.5/blender/source/blender/python/intern/bpy_interface.c

Modified: 
branches/blender2.5/blender/source/blender/python/intern/bpy_interface.c
===================================================================
--- branches/blender2.5/blender/source/blender/python/intern/bpy_interface.c    
2009-07-03 13:21:09 UTC (rev 21346)
+++ branches/blender2.5/blender/source/blender/python/intern/bpy_interface.c    
2009-07-03 13:48:42 UTC (rev 21347)
@@ -162,14 +162,14 @@
 
 #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);


_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to