From ef71a85f2afd6ac223efee9635865fbc774deafd Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Wed, 22 Sep 2010 13:25:17 +0000 Subject: [PATCH] fix error enum too SVN revision: 52588 --- legacy/evas/src/lib/Evas.h | 2 +- legacy/evas/src/lib/canvas/evas_main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/evas/src/lib/Evas.h b/legacy/evas/src/lib/Evas.h index abe9e9ab50..71fc4c3e17 100644 --- a/legacy/evas/src/lib/Evas.h +++ b/legacy/evas/src/lib/Evas.h @@ -2151,7 +2151,7 @@ struct _Evas_Smart_Cb_Description * Some functions that are handy but are not specific of canvas or * objects. */ - EAPI const char *evas_load_error_str(int error); + EAPI const char *evas_load_error_str (Evas_Load_Error error); /* Evas utility routines for color space conversions */ /* hsv color space has h in the range 0.0 to 360.0, and s,v in the range 0.0 to 1.0 */ diff --git a/legacy/evas/src/lib/canvas/evas_main.c b/legacy/evas/src/lib/canvas/evas_main.c index fed3155c63..5579ed4bfc 100644 --- a/legacy/evas/src/lib/canvas/evas_main.c +++ b/legacy/evas/src/lib/canvas/evas_main.c @@ -1165,7 +1165,7 @@ _evas_unwalk(Evas *e) * @ingroup Evas_Utils */ EAPI const char * -evas_load_error_str(int error) +evas_load_error_str(Evas_Load_Error error) { switch (error) {