Revision: 39189
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39189
Author:   nazgul
Date:     2011-08-08 17:23:26 +0000 (Mon, 08 Aug 2011)
Log Message:
-----------
Camera tracking integration
===========================

Compilation fix (snprintf vs. BLI_snprintf)

Modified Paths:
--------------
    branches/soc-2011-tomato/source/blender/blenkernel/intern/movieclip.c

Modified: branches/soc-2011-tomato/source/blender/blenkernel/intern/movieclip.c
===================================================================
--- branches/soc-2011-tomato/source/blender/blenkernel/intern/movieclip.c       
2011-08-08 16:38:57 UTC (rev 39188)
+++ branches/soc-2011-tomato/source/blender/blenkernel/intern/movieclip.c       
2011-08-08 17:23:26 UTC (rev 39189)
@@ -170,10 +170,10 @@
        if(clip->flag&MCLIP_USE_PROXY_CUSTOM_DIR) {
                strcpy(dir, clip->proxy.dir);
        } else {
-               snprintf(dir, FILE_MAX, "%s/BL_proxy", clipdir);
+               BLI_snprintf(dir, FILE_MAX, "%s/BL_proxy", clipdir);
        }
 
-       snprintf(name, FILE_MAX, "%s/images/%d/%s_proxy", dir, size,  clipfile);
+       BLI_snprintf(name, FILE_MAX, "%s/images/%d/%s_proxy", dir, size,  
clipfile);
 
        BLI_path_abs(name, G.main->name);
        BLI_path_frame(name, 1, 0);

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

Reply via email to