mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavu: add parens to macro argument.
This commit is contained in:
parent
76c8060654
commit
2a1d7ea5f8
@ -271,7 +271,7 @@ unsigned av_int_list_length_for_size(unsigned elsize,
|
|||||||
* @return length of the list, in elements, not counting the terminator
|
* @return length of the list, in elements, not counting the terminator
|
||||||
*/
|
*/
|
||||||
#define av_int_list_length(list, term) \
|
#define av_int_list_length(list, term) \
|
||||||
av_int_list_length_for_size(sizeof(*list), list, term)
|
av_int_list_length_for_size(sizeof(*(list)), list, term)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @}
|
* @}
|
||||||
|
Loading…
Reference in New Issue
Block a user