eina: fix invalid prototype

The prototype means "unspecified arguments". However, the implementation
specifies no parameters (void).
GCC's warning -Wstrict-prototypes complains a lots about this old-style
prototype, spamming the console when compiling more than one compiling
units including Eina.

@fix
This commit is contained in:
Jean Guyomarc'h 2016-01-28 22:29:32 +01:00 committed by Stefan Schmidt
parent adff529004
commit 40f162fbc5
1 changed files with 1 additions and 1 deletions

View File

@ -3508,7 +3508,7 @@ typedef Eina_Value_Union Eina_Value_Optional;
* @return returns an empty optional eina value.
* @since 1.17
*/
static inline Eina_Value *eina_value_optional_empty_new();
static inline Eina_Value *eina_value_optional_empty_new(void);
/**
* @brief Create an optional eina value with the passed value