Elm scroller: Fixed 'may be used uninitialized' warnings.

SVN revision: 60231
This commit is contained in:
Daniel Juyung Seo 2011-06-11 16:43:20 +00:00
parent e6dbf02e0e
commit c197a99832
1 changed files with 1 additions and 1 deletions

View File

@ -1673,7 +1673,7 @@ _smart_hold_animator(void *data)
if (_elm_config->scroll_smooth_amount > 0.0)
{
int i, count = 0;
Evas_Coord basex, basey, x, y;
Evas_Coord basex = 0, basey = 0, x, y;
double dt, t, tdiff, tnow, twin;
struct {
Evas_Coord x, y, dx, dy;