From 4ef27f0ca4ae049edd46b82c52c54daea42ba2f2 Mon Sep 17 00:00:00 2001 From: sam Date: Sat, 16 Oct 2010 21:55:44 +0000 Subject: [PATCH] Minor compilation warning fix. git-svn-id: file:///srv/caca.zoy.org/var/lib/svn/libpipi/trunk@4695 92316355-f0b4-4df1-b90c-862c8a59935f --- examples/storyboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/storyboard.c b/examples/storyboard.c index 03f0785..ad4a688 100644 --- a/examples/storyboard.c +++ b/examples/storyboard.c @@ -133,8 +133,8 @@ int main(int argc, char *argv[]) TWIDTH, THEIGHT, PIX_FMT_RGB32, SWS_BICUBIC, NULL, NULL, NULL); - sws_scale(sws, frame->data, frame->linesize, 0, ctx->height, - &start, &pitch); + sws_scale(sws, (uint8_t const **)frame->data, frame->linesize, 0, + ctx->height, &start, &pitch); decorate(start);