From 83e72cc813d8df8c5d0b2cb6e6e92e324c28787e Mon Sep 17 00:00:00 2001 From: Ken Hughes Date: Sat, 17 Mar 2007 14:46:04 +0000 Subject: Fix various gcc warning, unused variables and incorrect type passed to *printf functions. --- source/blender/imbuf/intern/cineon/dpxlib.c | 38 ++++++++++++++--------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'source/blender/imbuf') diff --git a/source/blender/imbuf/intern/cineon/dpxlib.c b/source/blender/imbuf/intern/cineon/dpxlib.c index bb12f9307e3..b769d1e6132 100644 --- a/source/blender/imbuf/intern/cineon/dpxlib.c +++ b/source/blender/imbuf/intern/cineon/dpxlib.c @@ -58,15 +58,15 @@ fillDpxChannelInfo(DpxFile* dpx, DpxChannelInformation* chan, int des) { static void dumpDpxChannelInfo(DpxChannelInformation* chan) { - d_printf(" Signage %ld", ntohl(chan->signage)); - d_printf(" Ref low data %ld\n", ntohl(chan->ref_low_data)); + d_printf(" Signage %ld", (long)ntohl(chan->signage)); + d_printf(" Ref low data %ld\n", (long)ntohl(chan->ref_low_data)); d_printf(" Ref low quantity %f\n", ntohf(chan->ref_low_quantity)); - d_printf(" Ref high data %ld\n", ntohl(chan->ref_high_data)); + d_printf(" Ref high data %ld\n", (long)ntohl(chan->ref_high_data)); d_printf(" Ref high quantity %f\n", ntohf(chan->ref_high_quantity)); d_printf(" Designator1: %d,", chan->designator1); d_printf(" Bits per pixel %d\n", chan->bits_per_pixel); d_printf(" Packing: %d,", ntohs(chan->packing)); - d_printf(" Data Offset: %ld,", ntohl(chan->data_offset)); + d_printf(" Data Offset: %ld,", (long)ntohl(chan->data_offset)); } static void @@ -109,20 +109,20 @@ fillDpxFileInfo( static void dumpDpxFileInfo(DpxFileInformation* fileInfo) { d_printf("\n--File Information--\n"); - d_printf("Magic: %8.8lX\n", ntohl(fileInfo->magic_num)); - d_printf("Image Offset %ld\n", ntohl(fileInfo->offset)); + d_printf("Magic: %8.8lX\n", (unsigned long)ntohl(fileInfo->magic_num)); + d_printf("Image Offset %ld\n", (long)ntohl(fileInfo->offset)); d_printf("Version \"%s\"\n", fileInfo->vers); - d_printf("File size %ld\n", ntohl(fileInfo->file_size)); - d_printf("Ditto key %ld\n", ntohl(fileInfo->ditto_key)); - d_printf("Generic Header size %ld\n", ntohl(fileInfo->gen_hdr_size)); - d_printf("Industry Header size %ld\n", ntohl(fileInfo->ind_hdr_size)); - d_printf("User Data size %ld\n", ntohl(fileInfo->user_data_size)); + d_printf("File size %ld\n", (long)ntohl(fileInfo->file_size)); + d_printf("Ditto key %ld\n", (long)ntohl(fileInfo->ditto_key)); + d_printf("Generic Header size %ld\n", (long)ntohl(fileInfo->gen_hdr_size)); + d_printf("Industry Header size %ld\n", (long)ntohl(fileInfo->ind_hdr_size)); + d_printf("User Data size %ld\n", (long)ntohl(fileInfo->user_data_size)); d_printf("File name \"%s\"\n", fileInfo->file_name); d_printf("Creation date \"%s\"\n", fileInfo->create_date); d_printf("Creator \"%s\"\n", fileInfo->creator); d_printf("Project \"%s\"\n", fileInfo->project); d_printf("Copyright \"%s\"\n", fileInfo->copyright); - d_printf("Key %ld\n", ntohl(fileInfo->key)); + d_printf("Key %ld\n", (long)ntohl(fileInfo->key)); } static void @@ -150,8 +150,8 @@ dumpDpxImageInfo(DpxImageInformation* imageInfo) { d_printf("Image orientation %d,", ntohs(imageInfo->orientation)); n = ntohs(imageInfo->channels_per_image); d_printf("Channels %d\n", n); - d_printf("Pixels per line %ld\n", ntohl(imageInfo->pixels_per_line)); - d_printf("Lines per image %ld\n", ntohl(imageInfo->lines_per_image)); + d_printf("Pixels per line %ld\n", (long)ntohl(imageInfo->pixels_per_line)); + d_printf("Lines per image %ld\n", (long)ntohl(imageInfo->lines_per_image)); for (i = 0; i < n; ++i) { d_printf(" --Channel %d--\n", i); dumpDpxChannelInfo(&imageInfo->channel[i]); @@ -166,12 +166,12 @@ fillDpxOriginationInfo( static void dumpDpxOriginationInfo(DpxOriginationInformation* originInfo) { d_printf("\n--Origination Information--\n"); - d_printf("X offset %ld\n", ntohl(originInfo->x_offset)); - d_printf("Y offset %ld\n", ntohl(originInfo->y_offset)); + d_printf("X offset %ld\n", (long)ntohl(originInfo->x_offset)); + d_printf("Y offset %ld\n", (long)ntohl(originInfo->y_offset)); d_printf("X centre %f\n", ntohf(originInfo->x_centre)); d_printf("Y centre %f\n", ntohf(originInfo->y_centre)); - d_printf("Original X %ld\n", ntohl(originInfo->x_original_size)); - d_printf("Original Y %ld\n", ntohl(originInfo->y_original_size)); + d_printf("Original X %ld\n", (long)ntohl(originInfo->x_original_size)); + d_printf("Original Y %ld\n", (long)ntohl(originInfo->y_original_size)); d_printf("File name \"%s\"\n", originInfo->file_name); d_printf("Creation time \"%s\"\n", originInfo->creation_time); d_printf("Input device \"%s\"\n", originInfo->input_device); @@ -413,7 +413,7 @@ intern_dpxOpen(int mode, const char* bytestuff, int bufsize) { /* let's assume dpx files are always network order */ if (header.fileInfo.magic_num != ntohl(DPX_FILE_MAGIC)) { if (verbose) d_printf("Bad magic number %8.8lX in \"%s\".\n", - ntohl(header.fileInfo.magic_num), filename); + (unsigned long)ntohl(header.fileInfo.magic_num), filename); dpxClose(dpx); return 0; } -- cgit v1.2.3