tasn pushed a commit to branch efl-1.9. http://git.enlightenment.org/core/efl.git/commit/?id=da06a4d3168d977d8cb5f0af7c8111f0e1bd81a1
commit da06a4d3168d977d8cb5f0af7c8111f0e1bd81a1 Author: Tom Hacohen <t...@stosb.com> Date: Mon Mar 10 16:50:03 2014 +0000 Eina Log: Fixed ABI break introduce by the addition of 'color'. ABI break was introduced here 5913ce7ec87beb267d2d02846e5267eae08ef860 Always add new members at the end of public structures. --- src/lib/eina/eina_log.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/eina/eina_log.h b/src/lib/eina/eina_log.h index bc59d78..4d8f3ef 100644 --- a/src/lib/eina/eina_log.h +++ b/src/lib/eina/eina_log.h @@ -413,13 +413,15 @@ typedef struct _Eina_Log_Domain Eina_Log_Domain; struct _Eina_Log_Domain { int level; /**< Max level to log */ - const char *color; /**< Color to use when printing in this domain */ const char *domain_str; /**< Formatted string with color to print */ const char *name; /**< Domain name */ size_t namelen; /**< strlen(name) */ /* Private */ Eina_Bool deleted : 1; /**< Flags deletion of domain, a free slot */ + + /* Add new members here. */ + const char *color; /**< Color to use when printing in this domain */ }; /** --