summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/eiotas_private.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/eiotas_private.h b/src/lib/eiotas_private.h
index 272b16c..67ed4f3 100644
--- a/src/lib/eiotas_private.h
+++ b/src/lib/eiotas_private.h
@@ -30,17 +30,17 @@
#define MAX_PATH_LENGTH 256
#define PATH_SEP '/'
-#define CHECK_PARENT() \
- if(parent==NULL) { \
- EINA_LOG_ERR("NULL parent not allowed"); \
- return NULL; \
+#define CHECK_PARENT() \
+ if(parent==NULL) { \
+ ERR("NULL parent not allowed"); \
+ return NULL; \
}
-#define BUILD_INSTANCE(_type,_x) \
- _type *_x = (_type*)malloc(sizeof(_type)); \
- if(_x==NULL) { \
- EINA_LOG_ERR("malloc error"); \
- return NULL; \
+#define BUILD_INSTANCE(_type,_x) \
+ _type *_x = (_type*)malloc(sizeof(_type)); \
+ if(_x==NULL) { \
+ ERR("malloc error"); \
+ return NULL; \
}
#ifdef CRITICAL