From 0b5e739674f26ddc97e92cad9bb8239f9617c3f2 Mon Sep 17 00:00:00 2001
From: "Suren A. Chilingaryan" <csa@dside.dyndns.org>
Date: Mon, 12 Dec 2011 09:54:30 +0100
Subject: Fix printf type

---
 src/ufodecode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src/ufodecode.c')

diff --git a/src/ufodecode.c b/src/ufodecode.c
index 3143454..e96dff3 100644
--- a/src/ufodecode.c
+++ b/src/ufodecode.c
@@ -148,7 +148,7 @@ static int ufo_decode_frame_channels(ufo_decoder decoder, uint16_t *pixel_buffer
         CHECK_FLAG("raw header magick", header == 2, header);
 	CHECK_FLAG("row number, only %i rows requested", row < num_rows, row, num_rows);
         CHECK_FLAG("pixel size, only 10 bits are supported", bpp == 10, bpp);
-        CHECK_FLAG("channel, limited by %i output channels", channel < cpl, channel, cpl);
+        CHECK_FLAG("channel, limited by %zu output channels", channel < cpl, channel, cpl);
 	CHECK_FLAG("channel (line %i), duplicate entry", (!cmask)||(cmask[row]&(1<<channel_order[channel])) == 0, channel_order[channel], row);
 #endif
 
-- 
cgit v1.2.3