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:
authorStephen Swaney <sswaney@centurytel.net>2007-09-03 23:12:36 +0400
committerStephen Swaney <sswaney@centurytel.net>2007-09-03 23:12:36 +0400
commit3326d493a0d9b2b22bfb5c5446fed232bab9d28f (patch)
treec7f8df717fa84304058efad23f488acdd0d93b20 /source/blender/imbuf/IMB_imbuf.h
parent1b35c1c1ec6cd5a017fc5c69a1222592b16582f7 (diff)
more warning fixes.
sprinkle a few 'const char*'s around to remove warnings about discarding qualifiers in imbuf code.
Diffstat (limited to 'source/blender/imbuf/IMB_imbuf.h')
-rw-r--r--source/blender/imbuf/IMB_imbuf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/IMB_imbuf.h b/source/blender/imbuf/IMB_imbuf.h
index 3e8aaea4f3c..e56fb5a776d 100644
--- a/source/blender/imbuf/IMB_imbuf.h
+++ b/source/blender/imbuf/IMB_imbuf.h
@@ -158,7 +158,7 @@ struct ImBuf *IMB_testiffname(char *naam,int flags);
*
* @attention Defined in readimage.c
*/
-struct ImBuf *IMB_loadiffname(char *naam, int flags);
+struct ImBuf *IMB_loadiffname(const char *naam, int flags);
/**
*
@@ -258,7 +258,7 @@ int IMB_anim_get_duration(struct anim *anim);
*
* @attention Defined in anim.c
*/
-struct anim * IMB_open_anim(char * name, int ib_flags);
+struct anim * IMB_open_anim(const char * name, int ib_flags);
void IMB_close_anim(struct anim * anim);
/**