From: raster Date: Wed, 22 Sep 2010 13:25:17 +0000 (+0000) Subject: fix error enum too X-Git-Tag: accepted/2.0/20130306.225542~242^2~1448 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=18c2847c05bb6ab4d5d6a73336f93e7bccff1dfa;p=profile%2Fivi%2Fevas.git fix error enum too git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@52588 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/Evas.h b/src/lib/Evas.h index abe9e9a..71fc4c3 100644 --- a/src/lib/Evas.h +++ b/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/src/lib/canvas/evas_main.c b/src/lib/canvas/evas_main.c index fed3155..5579ed4 100644 --- a/src/lib/canvas/evas_main.c +++ b/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) {