mirror of https://github.com/mpv-player/mpv
codec-cfg.c: Remove bogus printf argument
Two printf calls had a bogus argument that did not match the format string. Remove.
This commit is contained in:
parent
e0172b96e3
commit
b93f4b7bba
|
@ -1022,8 +1022,8 @@ int main(int argc, char* argv[])
|
||||||
nr[1] = nr_acodecs;
|
nr[1] = nr_acodecs;
|
||||||
|
|
||||||
printf("/* GENERATED FROM %s, DO NOT EDIT! */\n\n",argv[1]);
|
printf("/* GENERATED FROM %s, DO NOT EDIT! */\n\n",argv[1]);
|
||||||
printf("#include <stddef.h>\n",argv[1]);
|
printf("#include <stddef.h>\n");
|
||||||
printf("#include \"codec-cfg.h\"\n\n",argv[1]);
|
printf("#include \"codec-cfg.h\"\n\n");
|
||||||
|
|
||||||
for (i=0; i<2; i++) {
|
for (i=0; i<2; i++) {
|
||||||
printf("const codecs_t %s[] = {\n", nm[i]);
|
printf("const codecs_t %s[] = {\n", nm[i]);
|
||||||
|
|
Loading…
Reference in New Issue