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:
authorDaniel Dunbar <daniel@zuster.org>2005-04-02 19:36:57 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-04-02 19:36:57 +0400
commit24c9f650565e6a016cca9d45c7daee94dfcb7130 (patch)
tree89becedccd6ed77790f6c5c5e35280d9a4e560b4 /source/blender/quicktime
parentbdb86d7c6765724d297e7aa97dec4c0cc7d2bae9 (diff)
- got tired of str[n]casecmp not declared warnings
- added BLI_str[n]casecmp, use instead of regular versions - rewrote BLI_str[n]casecmp to not be stupid
Diffstat (limited to 'source/blender/quicktime')
-rw-r--r--source/blender/quicktime/apple/quicktime_export.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/quicktime/apple/quicktime_export.c b/source/blender/quicktime/apple/quicktime_export.c
index dd97cec736b..5c59f734345 100644
--- a/source/blender/quicktime/apple/quicktime_export.c
+++ b/source/blender/quicktime/apple/quicktime_export.c
@@ -417,7 +417,7 @@ void makeqtstring (char *string) {
RE_make_existing_file(string);
- if (strcasecmp(string + strlen(string) - 4, ".mov")) {
+ if (BLI_strcasecmp(string + strlen(string) - 4, ".mov")) {
sprintf(txt, "%04d_%04d.mov", (G.scene->r.sfra) , (G.scene->r.efra) );
strcat(string, txt);
}