blob: 6ab80c8574d51cde5399ef17a5a05ee9785cf9a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- include/xine/xineutils.h.orig
+++ include/xine/xineutils.h
@@ -146,7 +146,7 @@ void *xine_xcalloc(size_t nmemb, size_t
* 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) {
+static void _x_freep(void *ptr) {
void **p = (void **)ptr;
free (*p);
*p = NULL;
|