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:
authorTon Roosendaal <ton@blender.org>2008-07-09 17:12:58 +0400
committerTon Roosendaal <ton@blender.org>2008-07-09 17:12:58 +0400
commit180a7d1f623bfa78ff9f8397507053e679a0efbc (patch)
tree4a094ba7882c581bc49933668b3cc64b88369ab8 /source/blender/imbuf
parentbad6b003db72c9265bf817c55f909aa23ec84fb3 (diff)
Replaced strcasecmp with BLI_strcasecmp, to make msvc happy!
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/openexr/openexr_api.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/openexr/openexr_api.cpp b/source/blender/imbuf/intern/openexr/openexr_api.cpp
index 7dee9891ce5..16e76331916 100644
--- a/source/blender/imbuf/intern/openexr/openexr_api.cpp
+++ b/source/blender/imbuf/intern/openexr/openexr_api.cpp
@@ -865,7 +865,7 @@ static const char *exr_rgba_channelname(InputFile *file, const char *chan)
const char *str= i.name();
int len= strlen(str);
if(len) {
- if(strcasecmp(chan, str+len-1)==0) {
+ if(BLI_strcasecmp(chan, str+len-1)==0) {
printf("name %s\n", str);
return str;
}