summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetri Hintukainen <phintuka@users.sourceforge.net>2013-11-06 12:23:48 +0200
committerPetri Hintukainen <phintuka@users.sourceforge.net>2013-11-06 12:23:48 +0200
commitccd5f63309e44878cf13c5bc7e88b1b95fd6c29a (patch)
treedc7d5dbfc066b19e4a53cb37b52aced5b2da7781
parentc3902ebf55e8648d66ae99290d659c0802f66b7b (diff)
downloadxine-lib-ccd5f63309e44878cf13c5bc7e88b1b95fd6c29a.tar.gz
xine-lib-ccd5f63309e44878cf13c5bc7e88b1b95fd6c29a.tar.bz2
Fix build
-rw-r--r--include/xine/xineutils.h2
1 files changed, 1 insertions, 1 deletions
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;