From ccd5f63309e44878cf13c5bc7e88b1b95fd6c29a Mon Sep 17 00:00:00 2001 From: Petri Hintukainen Date: Wed, 6 Nov 2013 12:23:48 +0200 Subject: Fix build --- include/xine/xineutils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xine/xineutils.h b/include/xine/xineutils.h index 3a997d2c2..bab986aa2 100644 --- a/include/xine/xineutils.h +++ b/include/xine/xineutils.h @@ -146,7 +146,7 @@ void *xine_xcalloc(size_t nmemb, size_t size) XINE_MALLOC XINE_PROTECTED; * Free allocated memory and set pointer to NULL * @param ptr Pointer to the pointer to the memory block which should be freed. */ -static inline void _x_freep(void *ptr) XINE_PROTECTED { +static inline void _x_freep(void *ptr) { void **p = (void **)ptr; free (*p); *p = NULL; -- cgit v1.2.3