Evas image: Fix compilation for David Seikel.

Weird that it works here. I guess the type of va_list is different for you.

Anyhow, you are right, that's an issue, thanks.

SVN revision: 77609
This commit is contained in:
Tom Hacohen 2012-10-09 06:02:05 +00:00
parent 4aa928b9c0
commit 589ae339d9
1 changed files with 1 additions and 1 deletions

View File

@ -753,7 +753,7 @@ static void
_image_border_scale_get(Eo *eo_obj EINA_UNUSED, void *_pd, va_list *list)
{
const Evas_Object_Image *o = _pd;
double *scale = va_arg(list, double *);
double *scale = va_arg(*list, double *);
if (scale) *scale = o->cur.border.scale;
}