diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-22 10:15:56 +0200 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-22 10:15:56 +0200 | 
| commit | d841d5f34a177d53cc4e910d75dd1cb1169eeda0 (patch) | |
| tree | d6acad6daefdf82861bcfda9be202ec344b2f07f /src | |
| parent | 9fca0e3b8d6517b85fa60271338873dd0127b62b (diff) | |
| download | edoors-d841d5f34a177d53cc4e910d75dd1cb1169eeda0.zip edoors-d841d5f34a177d53cc4e910d75dd1cb1169eeda0.tar.gz  | |
eiotas_private.h: fix typo userbits->user_bits
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/eiotas_private.h | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/eiotas_private.h b/src/lib/eiotas_private.h index c57b5a4..e1e8deb 100644 --- a/src/lib/eiotas_private.h +++ b/src/lib/eiotas_private.h @@ -56,21 +56,21 @@      }                                                                               \      eina_hash_direct_add(_parent->children,_iota->name,_iota); -#define CHECK_USERBITS(_userbits)                       \ -    if(_userbits->data==NULL) {                         \ -        ERR("userbits->data NULL is not allowed");      \ +#define CHECK_USERBITS(_user_bits)                      \ +    if(_user_bits->data==NULL) {                        \ +        ERR("user_bits->data NULL is not allowed");     \          return  NULL;                                   \      }                                                   \ -    if(_userbits->free_fct==NULL) {                     \ -        ERR("userbits->free_fct NULL is not allowed");  \ +    if(_user_bits->free_fct==NULL) {                    \ +        ERR("user_bits->free_fct NULL is not allowed"); \          return  NULL;                                   \      }                                                   \ -    if(_userbits->recv_fct==NULL) {                     \ -        ERR("userbits->recv_fct NULL is not allowed");  \ +    if(_user_bits->recv_fct==NULL) {                    \ +        ERR("user_bits->recv_fct NULL is not allowed"); \          return  NULL;                                   \      }                                                   \ -/* TODO  userbits->start_fct; userbits->stop_fct; userbits->suspend_fct; userbits->resume_fct; */ +/* TODO  user_bits->start_fct; user_bits->stop_fct; user_bits->suspend_fct; user_bits->resume_fct; */  #ifdef CRITICAL  #undef CRITICAL  | 
