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>2006-04-02 22:11:02 +0400
committerDaniel Dunbar <daniel@zuster.org>2006-04-02 22:11:02 +0400
commit1d5cca805b05de9aac262b09c724d180e6eb3ffc (patch)
tree0a164b49f10c3701b70db1680ab54336f712b902 /source/blender/imbuf/intern
parent04a76534129a9374d7ca081e5d7f3ac4e4574586 (diff)
- fix some minor typing/redefinition errors, should
not be misconstrued as "working" by myself
Diffstat (limited to 'source/blender/imbuf/intern')
-rw-r--r--source/blender/imbuf/intern/cineon/cineon_dpx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/cineon/cineon_dpx.c b/source/blender/imbuf/intern/cineon/cineon_dpx.c
index 020449897a5..4058f27b929 100644
--- a/source/blender/imbuf/intern/cineon/cineon_dpx.c
+++ b/source/blender/imbuf/intern/cineon/cineon_dpx.c
@@ -182,7 +182,7 @@ short imb_save_dpx(struct ImBuf *buf, char *myfile, int flags)
return imb_save_dpx_cineon(buf, myfile, 0, flags);
}
-short imb_is_dpx(void *buf)
+int imb_is_dpx(void *buf)
{
return dpxIsMemFileCineon(buf);
}