diff mbox series

[FFmpeg-devel] avformat/network: fix comments

Message ID tencent_F1BE7FEAAE723A65C005B684690201D1690A@qq.com
State New
Headers show
Series [FFmpeg-devel] avformat/network: fix comments | expand

Checks

Context Check Description
andriy/default pending
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

Zhao Zhili Aug. 24, 2020, 4:41 p.m. UTC
---
 libavformat/network.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/libavformat/network.h b/libavformat/network.h
index 71347e815b..18e2dd6e5e 100644
--- a/libavformat/network.h
+++ b/libavformat/network.h
@@ -249,7 +249,7 @@  int ff_is_multicast_address(struct sockaddr *addr);
 #define POLLING_TIME 100 /// Time in milliseconds between interrupt check
 
 /**
- * Bind to a file descriptor and poll for a connection.
+ * Bind an address to a file descriptor and poll for a connection.
  *
  * @param fd      First argument of bind().
  * @param addr    Second argument of bind().
@@ -265,7 +265,7 @@  int ff_listen_bind(int fd, const struct sockaddr *addr,
                    URLContext *h);
 
 /**
- * Bind to a file descriptor to an address without accepting connections.
+ * Bind an address to a file descriptor without accepting connections.
  * @param fd      First argument of bind().
  * @param addr    Second argument of bind().
  * @param addrlen Third argument of bind().