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:
Diffstat (limited to 'source/blender/imbuf/intern/filter.c')
-rw-r--r--source/blender/imbuf/intern/filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/filter.c b/source/blender/imbuf/intern/filter.c
index aac5b2c625d..74f9ec4508d 100644
--- a/source/blender/imbuf/intern/filter.c
+++ b/source/blender/imbuf/intern/filter.c
@@ -97,7 +97,7 @@ static void filtcolum(unsigned char *point, int y, int skip)
void IMB_filtery(struct ImBuf *ibuf)
{
unsigned char *point;
- short x,y,skip;
+ int x, y, skip;
point = (unsigned char *)ibuf->rect;
x = ibuf->x;
@@ -120,7 +120,7 @@ void IMB_filtery(struct ImBuf *ibuf)
void imb_filterx(struct ImBuf *ibuf)
{
unsigned char *point;
- short x,y,skip;
+ int x, y, skip;
point = (unsigned char *)ibuf->rect;
x = ibuf->x;