summaryrefslogtreecommitdiff
path: root/libavformat/avio.c
diff options
context:
space:
mode:
authorGabriel Dume <gabriel.ddx84@gmail.com>2014-08-14 16:31:25 -0400
committerDiego Biurrun <diego@biurrun.de>2014-08-15 05:34:13 -0700
commit4b1f5e5090abed6c618c8ba380cd7d28d140f867 (patch)
treed5281695ec758c21ed6c0df8e3c03433bca28d18 /libavformat/avio.c
parentf929ab0569ff31ed5a59b0b0adb7ce09df3fca39 (diff)
cosmetics: Write NULL pointer inequality checks more compactly
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavformat/avio.c')
-rw-r--r--libavformat/avio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avio.c b/libavformat/avio.c
index 80863da9e3..7f6449c087 100644
--- a/libavformat/avio.c
+++ b/libavformat/avio.c
@@ -98,7 +98,7 @@ int ffurl_register_protocol(URLProtocol *protocol)
{
URLProtocol **p;
p = &first_protocol;
- while (*p != NULL)
+ while (*p)
p = &(*p)->next;
*p = protocol;
protocol->next = NULL;