File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ typedef struct {
20
20
#define vcardenumarray_element_at (array , position ) \
21
21
((const vcardenumarray_element *) icalarray_element_at(array, position))
22
22
23
- #define vcardenumarray_size (array ) (array)->num_elements
23
+ #define vcardenumarray_size (array ) (( array)->num_elements)
24
24
25
25
LIBICAL_VCARD_EXPORT ssize_t vcardenumarray_find (vcardenumarray * array ,
26
26
vcardenumarray_element * needle );
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ typedef icalarray vcardstrarray;
15
15
#define vcardstrarray_element_at (array , position ) \
16
16
*((const char **) icalarray_element_at(array, position))
17
17
18
- #define vcardstrarray_size (array ) (array)->num_elements
18
+ #define vcardstrarray_size (array ) (( array)->num_elements)
19
19
20
20
LIBICAL_VCARD_EXPORT ssize_t vcardstrarray_find (vcardstrarray * array ,
21
21
const char * needle );
You can’t perform that action at this time.
0 commit comments