From 85a494e86c69d4ace27eb5ccc15abc657d3e5f13 Mon Sep 17 00:00:00 2001 From: Viktor Kojouharov Date: Fri, 24 Apr 2009 21:02:40 +0000 Subject: [PATCH] fix the macro SVN revision: 40356 --- legacy/ethumb/src/lib/Ethumb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/ethumb/src/lib/Ethumb.c b/legacy/ethumb/src/lib/Ethumb.c index 33209aeee5..177e63d131 100644 --- a/legacy/ethumb/src/lib/Ethumb.c +++ b/legacy/ethumb/src/lib/Ethumb.c @@ -533,7 +533,7 @@ ethumb_file_set(Ethumb *e, const char *path, const char *key) EAPI void ethumb_file_get(Ethumb *e, const char **path, const char **key) { - EINA_SAFETY_ON_NULL_RETURN_VAL(e, NULL); + EINA_SAFETY_ON_NULL_RETURN(e); if (path) *path = e->src_path; if (key) *key = e->src_key;