Commit 3bc92e34 authored by Clément Bœsch's avatar Clément Bœsch

cmdutils: re-add return 0 accidentally remove from opt_protocols().

parent 23b639c4
...@@ -860,6 +860,7 @@ int opt_protocols(const char *opt, const char *arg) ...@@ -860,6 +860,7 @@ int opt_protocols(const char *opt, const char *arg)
printf("Output:\n"); printf("Output:\n");
while ((name = avio_enum_protocols(&opaque, 1))) while ((name = avio_enum_protocols(&opaque, 1)))
printf("%s\n", name); printf("%s\n", name);
return 0;
} }
int opt_filters(const char *opt, const char *arg) int opt_filters(const char *opt, const char *arg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment