From 589ae339d949eda23f2447803a94407dbb54a096 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 9 Oct 2012 06:02:05 +0000 Subject: [PATCH] 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 --- legacy/evas/src/lib/canvas/evas_object_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/evas/src/lib/canvas/evas_object_image.c b/legacy/evas/src/lib/canvas/evas_object_image.c index 4a1b3fafca..f19c4201ca 100644 --- a/legacy/evas/src/lib/canvas/evas_object_image.c +++ b/legacy/evas/src/lib/canvas/evas_object_image.c @@ -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; }