diff options
Diffstat (limited to 'toxav')
-rw-r--r-- | toxav/rtp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toxav/rtp.h b/toxav/rtp.h index 7daa6fd7..4d62a466 100644 --- a/toxav/rtp.h +++ b/toxav/rtp.h | |||
@@ -65,7 +65,7 @@ struct RTPHeader { | |||
65 | } __attribute__ ((packed)); | 65 | } __attribute__ ((packed)); |
66 | 66 | ||
67 | /* Check alignment */ | 67 | /* Check alignment */ |
68 | typedef char __fail_if_misaligned [ sizeof(struct RTPHeader) == 80 ? 1 : -1 ]; | 68 | typedef char __fail_if_misaligned_1 [ sizeof(struct RTPHeader) == 80 ? 1 : -1 ]; |
69 | 69 | ||
70 | struct RTPMessage { | 70 | struct RTPMessage { |
71 | uint16_t len; | 71 | uint16_t len; |
@@ -75,7 +75,7 @@ struct RTPMessage { | |||
75 | } __attribute__ ((packed)); | 75 | } __attribute__ ((packed)); |
76 | 76 | ||
77 | /* Check alignment */ | 77 | /* Check alignment */ |
78 | typedef char __fail_if_misaligned [ sizeof(struct RTPMessage) == 82 ? 1 : -1 ]; | 78 | typedef char __fail_if_misaligned_2 [ sizeof(struct RTPMessage) == 82 ? 1 : -1 ]; |
79 | 79 | ||
80 | /** | 80 | /** |
81 | * RTP control session. | 81 | * RTP control session. |