[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [26465] trunk/blender/source/blender/ quicktime/apple/qtkit_export.m: Fix compile error in qtkit_export.m on mac.

Brecht Van Lommel brecht at blender.org
Sun Jan 31 10:42:50 CET 2010


Revision: 26465
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=26465
Author:   blendix
Date:     2010-01-31 10:42:50 +0100 (Sun, 31 Jan 2010)

Log Message:
-----------
Fix compile error in qtkit_export.m on mac.

Modified Paths:
--------------
    trunk/blender/source/blender/quicktime/apple/qtkit_export.m

Modified: trunk/blender/source/blender/quicktime/apple/qtkit_export.m
===================================================================
--- trunk/blender/source/blender/quicktime/apple/qtkit_export.m	2010-01-31 05:36:57 UTC (rev 26464)
+++ trunk/blender/source/blender/quicktime/apple/qtkit_export.m	2010-01-31 09:42:50 UTC (rev 26465)
@@ -154,8 +154,6 @@
 }
 
 void filepath_qt(char *string, RenderData *rd) {
-	char txt[64];
-	
 	if (string==NULL) return;
 	
 	strcpy(string, rd->pic);
@@ -168,7 +166,7 @@
 		if (strchr(string, '#')==NULL)
 			strcat(string, "####"); /* 4 numbers */
 
-		BLI_convertstringframe_range(string, rd->sfra, rd->efra);
+		BLI_convertstringframe_range(string, rd->sfra, rd->efra, 4);
 		strcat(string, ".mov");
 	}
 }





More information about the Bf-blender-cvs mailing list