diff options
author | Clément Bœsch | 2012-01-28 12:36:38 +0100 |
---|---|---|
committer | Clément Bœsch | 2012-01-28 12:39:57 +0100 |
commit | 3bc92e34a4699ac3661df31e41a0ea12dc632234 (patch) | |
tree | 2a6ed38b1ac7baf6c3d43fb12e850ccbc5c2dd89 /cmdutils.c | |
parent | 23b639c44f88099fe05c51d51993970b7a6fce9a (diff) |
cmdutils: re-add return 0 accidentally remove from opt_protocols().
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 1 |
1 files changed, 1 insertions, 0 deletions
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) |