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:
Uoti Urpala 2009-03-07 01:08:02 +02:00
parent e0172b96e3
commit b93f4b7bba
1 changed files with 2 additions and 2 deletions

View File

@ -1022,8 +1022,8 @@ int main(int argc, char* argv[])
nr[1] = nr_acodecs;
printf("/* GENERATED FROM %s, DO NOT EDIT! */\n\n",argv[1]);
printf("#include <stddef.h>\n",argv[1]);
printf("#include \"codec-cfg.h\"\n\n",argv[1]);
printf("#include <stddef.h>\n");
printf("#include \"codec-cfg.h\"\n\n");
for (i=0; i<2; i++) {
printf("const codecs_t %s[] = {\n", nm[i]);