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:
authorCampbell Barton <ideasman42@gmail.com>2016-04-22 05:18:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-04-22 05:22:58 +0300
commit8dcdde52b17228601c95fed04f5bca03484d27ac (patch)
tree293d57d9b9a6248b2901d3d76f0611ae1811586b /source/blender/imbuf/intern/cineon/dpxlib.c
parent0b349871d81d61637722d775302a7505b515dd8a (diff)
Cleanup: warnings (double promote, string format)
Diffstat (limited to 'source/blender/imbuf/intern/cineon/dpxlib.c')
-rw-r--r--source/blender/imbuf/intern/cineon/dpxlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/cineon/dpxlib.c b/source/blender/imbuf/intern/cineon/dpxlib.c
index 562bdecb842..8b4e95ac452 100644
--- a/source/blender/imbuf/intern/cineon/dpxlib.c
+++ b/source/blender/imbuf/intern/cineon/dpxlib.c
@@ -184,8 +184,8 @@ LogImageFile *dpxOpen(const unsigned char *byteStuff, int fromMemory, size_t buf
}
else {
if (verbose) {
- printf("DPX: Bad magic number %lu in \"%s\".\n",
- (uintptr_t)header.fileHeader.magic_num, byteStuff);
+ printf("DPX: Bad magic number %u in \"%s\".\n",
+ header.fileHeader.magic_num, byteStuff);
}
logImageClose(dpx);
return NULL;