[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [15502] trunk/blender/source/blender/imbuf /intern/openexr/openexr_api.cpp: Replaced strcasecmp with BLI_strcasecmp, to make msvc happy!

Ton Roosendaal ton at blender.org
Wed Jul 9 15:12:58 CEST 2008


Revision: 15502
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=15502
Author:   ton
Date:     2008-07-09 15:12:58 +0200 (Wed, 09 Jul 2008)

Log Message:
-----------
Replaced strcasecmp with BLI_strcasecmp, to make msvc happy!

Modified Paths:
--------------
    trunk/blender/source/blender/imbuf/intern/openexr/openexr_api.cpp

Modified: trunk/blender/source/blender/imbuf/intern/openexr/openexr_api.cpp
===================================================================
--- trunk/blender/source/blender/imbuf/intern/openexr/openexr_api.cpp	2008-07-09 12:51:53 UTC (rev 15501)
+++ trunk/blender/source/blender/imbuf/intern/openexr/openexr_api.cpp	2008-07-09 13:12:58 UTC (rev 15502)
@@ -865,7 +865,7 @@
 		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;
 			}





More information about the Bf-blender-cvs mailing list