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:
authorRob Haarsma <phaseIV@zonnet.nl>2003-05-09 16:45:59 +0400
committerRob Haarsma <phaseIV@zonnet.nl>2003-05-09 16:45:59 +0400
commit6670ad7becc3e686dae0695861ef00c27f536b34 (patch)
tree1a97c012409c82e335280341166bc0dcfb2982fe /source/blender/quicktime/apple/quicktime_import.c
parent1e7e0633cfe37e6dff99809cc6b27c7a3d1158d9 (diff)
minor code cleanups
Diffstat (limited to 'source/blender/quicktime/apple/quicktime_import.c')
-rw-r--r--source/blender/quicktime/apple/quicktime_import.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/quicktime/apple/quicktime_import.c b/source/blender/quicktime/apple/quicktime_import.c
index c961472318b..798893a053e 100644
--- a/source/blender/quicktime/apple/quicktime_import.c
+++ b/source/blender/quicktime/apple/quicktime_import.c
@@ -489,7 +489,7 @@ ImBuf *imb_quicktime_decode(unsigned char *mem, int size, int flags)
(**dataref).data = mem;
(**dataref).dataLength = size;
- err = OpenADataHandler(dataref,
+ err = OpenADataHandler((Handle)dataref,
PointerDataHandlerSubType,
nil,
(OSType)0,
@@ -501,7 +501,7 @@ ImBuf *imb_quicktime_decode(unsigned char *mem, int size, int flags)
goto bail;
}
- err = GetGraphicsImporterForDataRef(dataref, PointerDataHandlerSubType, &gImporter);
+ err = GetGraphicsImporterForDataRef((Handle)dataref, PointerDataHandlerSubType, &gImporter);
if (err != noErr) {
if(QTIME_DEBUG) printf("no graphimport\n");
goto bail;