elm/cnp: remove const from static function return

this makes no sense

../src/lib/elementary/elm_cnp.c:54:15: warning: type qualifiers ignored on function return type [-Wignored-qualifiers]
   54 | static inline const Elm_Sel_Format

Reviewed-by: Christopher Michael <devilhorns@comcast.net>
Differential Revision: https://phab.enlightenment.org/D11759
This commit is contained in:
Mike Blumenkrantz 2020-04-27 09:46:45 -04:00 committed by Christopher Michael
parent bc7608da73
commit 0de64f2d91
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ _elm_sel_format_to_mime_type(Elm_Sel_Format format)
return ret;
}
static inline const Elm_Sel_Format
static inline Elm_Sel_Format
_mime_type_to_elm_sel_format(const char *mime_type)
{
if (eina_streq(mime_type, "text/vcard"))