oops, use the correct type

SVN revision: 17313
This commit is contained in:
tsauerbeck 2005-10-08 10:16:17 +00:00 committed by tsauerbeck
parent a8f25d2c81
commit a58a32b326
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ evas_common_convert_rgba_to_24bpp_rgb_888(DATA32 *src, DATA8 *dst, int src_jump,
int x, y;
dst_ptr = (DATA8 *)dst;
src_ptr = (DATA8 *)src;
src_ptr = (DATA32 *)src;
for (y = 0; y < h; y++)
{