diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2013-11-06 12:23:48 +0200 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2013-11-06 12:23:48 +0200 |
commit | ccd5f63309e44878cf13c5bc7e88b1b95fd6c29a (patch) | |
tree | dc7d5dbfc066b19e4a53cb37b52aced5b2da7781 | |
parent | c3902ebf55e8648d66ae99290d659c0802f66b7b (diff) | |
download | xine-lib-ccd5f63309e44878cf13c5bc7e88b1b95fd6c29a.tar.gz xine-lib-ccd5f63309e44878cf13c5bc7e88b1b95fd6c29a.tar.bz2 |
Fix build
-rw-r--r-- | include/xine/xineutils.h | 2 |
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; |