diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-11-26 18:35:26 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-11-28 10:01:50 +0100 |
commit | c88ebdb42c0a4e4c3d78c705752f06fe78af27f6 (patch) | |
tree | 2699a272b193386456170a685e06192e9e754a4d /libavformat/tls.c | |
parent | 1469f943adb06b85ac7e22fd3e8121c2308b0830 (diff) | |
download | ffmpeg-c88ebdb42c0a4e4c3d78c705752f06fe78af27f6.tar.gz |
Eliminate pointless 0/NULL initializers in AVCodec and similar declarations.
Diffstat (limited to 'libavformat/tls.c')
-rw-r--r-- | libavformat/tls.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/tls.c b/libavformat/tls.c index 339b799322..26f5ee5106 100644 --- a/libavformat/tls.c +++ b/libavformat/tls.c @@ -246,7 +246,6 @@ URLProtocol ff_tls_protocol = { .url_open = tls_open, .url_read = tls_read, .url_write = tls_write, - .url_seek = NULL, .url_close = tls_close, .priv_data_size = sizeof(TLSContext), }; |