eina_value: silent -Wextra for EINA_VALUE_EMPTY

-Wextra complains about missing initializers, so provide the full 8
 bytes of the first member of the union.
This commit is contained in:
Gustavo Sverzut Barbieri 2017-08-28 18:26:29 -03:00
parent 5e935a8ca9
commit 71a74aa718
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ typedef struct _Eina_Value Eina_Value;
*
* @since 1.21
*/
#define EINA_VALUE_EMPTY ((Eina_Value){ 0 })
#define EINA_VALUE_EMPTY ((Eina_Value){ NULL, { { 0, 0, 0, 0, 0, 0, 0, 0 } } })
/**
* @typedef Eina_Value_Type