diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-06-12 08:01:35 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-06-12 08:01:35 +0000 |
commit | 0a4f20c6c5425be5ceccc72cd6adbca96fabcbac (patch) | |
tree | 97274d3aad5cebc5a7dae5fe6bd7b9b2dc085005 | |
parent | 3cce801a0bcbfa849b3d348bb106bf606c0834b2 (diff) | |
download | ffmpeg-0a4f20c6c5425be5ceccc72cd6adbca96fabcbac.tar.gz |
Add some explanatory comments to #endif directives.
Originally committed as revision 9287 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/udp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c index b906660e01..cb5f516fae 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -204,7 +204,7 @@ static int udp_ipv6_set_local(URLContext *h) { return -1; } -#endif +#endif /* CONFIG_IPV6 */ /** @@ -384,7 +384,7 @@ static int udp_open(URLContext *h, const char *uri, int flags) goto fail; } } -#endif +#endif /* CONFIG_IPV6 */ if (is_output) { /* limit the tx buf size to limit latency */ |