diff options
author | Mans Rullgard <mans@mansr.com> | 2011-02-10 12:04:25 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-02-10 21:45:17 +0000 |
commit | 44adbebe1744c68d66d7f811c38270fdcc89665a (patch) | |
tree | f54d8c51945df57d392f1cd6a6b577103d440b46 /libavformat/rdt.c | |
parent | df211c3ab73b36208ac4511a9cd7feb817f551fa (diff) | |
download | ffmpeg-44adbebe1744c68d66d7f811c38270fdcc89665a.tar.gz |
Remove final semicolon from some macros
This avoids double semicolons after macro expansion.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavformat/rdt.c')
-rw-r--r-- | libavformat/rdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rdt.c b/libavformat/rdt.c index 3428b4d3fe..bb7f278163 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -559,7 +559,7 @@ static RTPDynamicProtocolHandler ff_rdt_ ## n ## _handler = { \ .open = rdt_new_context, \ .close = rdt_free_context, \ .parse_packet = rdt_parse_packet \ -}; +} RDT_HANDLER(live_video, "x-pn-multirate-realvideo-live", AVMEDIA_TYPE_VIDEO); RDT_HANDLER(live_audio, "x-pn-multirate-realaudio-live", AVMEDIA_TYPE_AUDIO); |