1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

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

This commit is contained in:
Clément Bœsch
2012-01-28 12:36:38 +01:00
parent 23b639c44f
commit 3bc92e34a4

View File

@@ -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)