From 3bc92e34a4699ac3661df31e41a0ea12dc632234 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Sat, 28 Jan 2012 12:36:38 +0100 Subject: [PATCH] cmdutils: re-add return 0 accidentally remove from opt_protocols(). --- cmdutils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cmdutils.c b/cmdutils.c index 5731a11f4c..056849dd87 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -860,6 +860,7 @@ int opt_protocols(const char *opt, const char *arg) printf("Output:\n"); while ((name = avio_enum_protocols(&opaque, 1))) printf("%s\n", name); + return 0; } int opt_filters(const char *opt, const char *arg)