[Bf-blender-cvs] [26bd1a7] master: Cleanup: warnings

Campbell Barton noreply at git.blender.org
Thu Jul 9 11:45:57 CEST 2015


Commit: 26bd1a766a9c1e71eb55059c80adf959fe884bbc
Author: Campbell Barton
Date:   Thu Jul 9 19:39:37 2015 +1000
Branches: master
https://developer.blender.org/rB26bd1a766a9c1e71eb55059c80adf959fe884bbc

Cleanup: warnings

===================================================================

M	source/blender/quicktime/apple/qtkit_export.m

===================================================================

diff --git a/source/blender/quicktime/apple/qtkit_export.m b/source/blender/quicktime/apple/qtkit_export.m
index db2d4e7..8f48f62 100644
--- a/source/blender/quicktime/apple/qtkit_export.m
+++ b/source/blender/quicktime/apple/qtkit_export.m
@@ -348,7 +348,9 @@ static OSStatus AudioConverterInputCallback(AudioConverterRef inAudioConverter,
 
 #pragma mark export functions
 
-int start_qt(void *context_v, struct Scene *scene, struct RenderData *rd, int rectx, int recty, ReportList *reports, bool preview, const char *UNUSED(suffix))
+int start_qt(
+        void *context_v, struct Scene *scene, struct RenderData *rd, int UNUSED(rectx), int UNUSED(recty),
+        ReportList *reports, bool preview, const char *UNUSED(suffix))
 {
 	NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
 	NSError *error;
@@ -652,7 +654,9 @@ int start_qt(void *context_v, struct Scene *scene, struct RenderData *rd, int re
 	return success;
 }
 
-int append_qt(void *context_v, struct RenderData *rd, int start_frame, int frame, int *pixels, int rectx, int recty, const char *UNUSED(suffix), ReportList *reports)
+int append_qt(
+        void *context_v, struct RenderData *rd, int start_frame, int frame, int *pixels, int rectx, int recty,
+        const char *UNUSED(suffix), ReportList *reports)
 {
 	NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
 	NSBitmapImageRep *blBitmapFormatImage;




More information about the Bf-blender-cvs mailing list