comment out some variables which are not currently implemented/used

SVN revision: 56096
This commit is contained in:
Mike Blumenkrantz 2011-01-14 06:21:24 +00:00
parent 4dd3d0d441
commit 14ff070f5c
1 changed files with 4 additions and 3 deletions

View File

@ -74,7 +74,8 @@ evas_image_load_file_head_tga(Image_Entry *ie, const char *file, const char *key
struct stat ss;
tga_header *header;
tga_footer *footer;
char hasa = 0, footer_present = 0, vinverted = 0, rle = 0;
char hasa = 0, footer_present = 0, vinverted = 0;
// char rle = 0;
int w = 0, h = 0, bpp;
fd = open(file, O_RDONLY);
@ -106,11 +107,11 @@ evas_image_load_file_head_tga(Image_Entry *ie, const char *file, const char *key
{
case TGA_TYPE_COLOR_RLE:
case TGA_TYPE_GRAY_RLE:
rle = 1;
// rle = 1;
break;
case TGA_TYPE_COLOR:
case TGA_TYPE_GRAY:
rle = 0;
// rle = 0;
break;
default:
goto close_file;