summaryrefslogtreecommitdiff
path: root/toxav/rtp.h
diff options
context:
space:
mode:
authorEniz Vukovic <eniz_vukovic@hotmail.com>2016-01-13 23:14:51 +0100
committerEniz Vukovic <eniz_vukovic@hotmail.com>2016-01-13 23:14:51 +0100
commitbd62c6a359ad8e7bb4640e08a472790ba9f590b2 (patch)
treeaeb15cd612bda3aa58bd9c601532c8f84e7289cd /toxav/rtp.h
parentb9ef24875ce1d9bf5f04f0164ae95f729330a295 (diff)
Fix issue #1497
Diffstat (limited to 'toxav/rtp.h')
-rw-r--r--toxav/rtp.h4
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 */
68typedef char __fail_if_misaligned [ sizeof(struct RTPHeader) == 80 ? 1 : -1 ]; 68typedef char __fail_if_misaligned_1 [ sizeof(struct RTPHeader) == 80 ? 1 : -1 ];
69 69
70struct RTPMessage { 70struct 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 */
78typedef char __fail_if_misaligned [ sizeof(struct RTPMessage) == 82 ? 1 : -1 ]; 78typedef char __fail_if_misaligned_2 [ sizeof(struct RTPMessage) == 82 ? 1 : -1 ];
79 79
80/** 80/**
81 * RTP control session. 81 * RTP control session.