From 9748b9fa4d954b6c9d09f1575cace3d76829e5cb Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 1 Feb 2013 11:05:38 +0000 Subject: [PATCH] fix eina_list_last_data_get detection for e SVN revision: 83548 --- src/bin/e.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e.h b/src/bin/e.h index 8b6dde0a1..963163bd8 100644 --- a/src/bin/e.h +++ b/src/bin/e.h @@ -248,7 +248,7 @@ typedef struct _E_Rect E_Rect; } \ } -#ifndef eina_list_last_data_get +#if (EINA_VERSION_MAJOR == 1) && (EINA_VERSION_MINOR < 8) # define eina_list_last_data_get(X) eina_list_data_get(eina_list_last(X)) #endif