comparison mem.h @ 484:454969cf56c1 libavutil

Cosmetic change: remove the whitespace after 'defined'
author zuxy
date Wed, 19 Mar 2008 07:43:43 +0000
parents c6cd6e70780b
children 913e95930efa
comparison
equal deleted inserted replaced
483:c6cd6e70780b 484:454969cf56c1
46 #define av_malloc_attrib __attribute__((__malloc__)) 46 #define av_malloc_attrib __attribute__((__malloc__))
47 #else 47 #else
48 #define av_malloc_attrib 48 #define av_malloc_attrib
49 #endif 49 #endif
50 50
51 #if defined (__GNUC__) && (__GNU__ > 4 || __GNU__ == 4 && __GNU_MINOR__ > 1) 51 #if defined(__GNUC__) && (__GNU__ > 4 || __GNU__ == 4 && __GNU_MINOR__ > 1)
52 #define av_alloc_size(n) __attribute__((alloc_size(n))) 52 #define av_alloc_size(n) __attribute__((alloc_size(n)))
53 #else 53 #else
54 #define av_alloc_size(n) 54 #define av_alloc_size(n)
55 #endif 55 #endif
56 56