fixed some warnings

SVN revision: 8555
This commit is contained in:
tsauerbeck 2004-01-18 07:55:14 +00:00 committed by tsauerbeck
parent 42b0811f16
commit c94d39aeba
2 changed files with 10 additions and 0 deletions

View File

@ -1,6 +1,10 @@
#include "evas_common.h"
#include "evas_private.h"
#ifdef BUILD_LOADER_EET
#include <Eet.h>
#endif
static Evas_Hash * images = NULL;
static Evas_Object_List * cache = NULL;
static int cache_size = 0;

View File

@ -402,6 +402,9 @@ SCALE_FUNC(RGBA_Image *src, RGBA_Image *dst,
DATA8 p1r, p1g, p1b, p1a;
DATA8 p2r, p2g, p2b, p2a;
DATA32 *lptr1, *lptr2;
p1r = p1g = p1b = p1a = 0;
p2r = p2g = p2b = p2a = 0;
lptr1 = row_ptr[y];
if ((lptr1 + src_w) >=
@ -491,6 +494,9 @@ SCALE_FUNC(RGBA_Image *src, RGBA_Image *dst,
DATA8 p1r, p1g, p1b;
DATA8 p2r, p2g, p2b;
DATA32 *lptr1, *lptr2;
p1r = p1g = p1b = 0;
p2r = p2g = p2b = 0;
lptr1 = row_ptr[y];
if ((lptr1 + src_w) >=