Evas: Fix uninitialized variable warning.

SVN revision: 74353
This commit is contained in:
Christopher Michael 2012-07-24 11:36:31 +00:00
parent 4b5e15a133
commit c652ba9071
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ _font_slave_glyphs_load(const void *cmddata, void *data __UNUSED__)
Slave_Msg_Font_Glyphs_Loaded *response;
Font_Info *fi;
unsigned int i;
unsigned int total_glyphs;
unsigned int total_glyphs = 0;
#ifdef DEBUG_LOAD_TIME
unsigned int gl_load_time = 0;
unsigned int gl_render_time = 0;