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:
authorKent Mein <mein@cs.umn.edu>2008-02-08 18:36:39 +0300
committerKent Mein <mein@cs.umn.edu>2008-02-08 18:36:39 +0300
commita8d47b37e5fe2d6be0e0d018b6230401955ca9fb (patch)
treeb85f35a221930460117ffc36ec23535142f7407c /source/blender/imbuf
parenteb50288cde751e5e10e524d849dd978ea26c6d09 (diff)
Just removed some unused vars cleaning up some little warnings.
Kent
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/scaling.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/scaling.c b/source/blender/imbuf/intern/scaling.c
index 59a5c310601..80731213140 100644
--- a/source/blender/imbuf/intern/scaling.c
+++ b/source/blender/imbuf/intern/scaling.c
@@ -923,7 +923,7 @@ static int q_scale_linear_interpolation(
if (ibuf->rect) {
unsigned char * newrect =
MEM_mallocN(newx * newy * sizeof(int), "q_scale rect");
- q_scale_byte(ibuf->rect, newrect, ibuf->x, ibuf->y,
+ q_scale_byte((unsigned char *)ibuf->rect, newrect, ibuf->x, ibuf->y,
newx, newy);
imb_freerectImBuf(ibuf);