Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-01-31 12:42:50 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-01-31 12:42:50 +0300
commit1832df2764e3328b2afe343ff8229aca9f1a3110 (patch)
tree906b696ef4f339e7735092efac6b169df854478b /source/blender/quicktime
parent962befe25de567cd680495994980cea04b31831d (diff)
Fix compile error in qtkit_export.m on mac.
Diffstat (limited to 'source/blender/quicktime')
-rw-r--r--source/blender/quicktime/apple/qtkit_export.m4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/quicktime/apple/qtkit_export.m b/source/blender/quicktime/apple/qtkit_export.m
index 6e9e4885def..412214aa428 100644
--- a/source/blender/quicktime/apple/qtkit_export.m
+++ b/source/blender/quicktime/apple/qtkit_export.m
@@ -154,8 +154,6 @@ void makeqtstring (RenderData *rd, char *string) {
}
void filepath_qt(char *string, RenderData *rd) {
- char txt[64];
-
if (string==NULL) return;
strcpy(string, rd->pic);
@@ -168,7 +166,7 @@ void filepath_qt(char *string, RenderData *rd) {
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");
}
}