diff options
author | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2009-03-07 01:08:02 +0200 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2009-03-07 01:08:02 +0200 |
commit | b93f4b7bba0e31d157b74685d3166f74a6c244d7 (patch) | |
tree | c232386e6ef4900161ad4514beac3a91fc4fd5e8 | |
parent | e0172b96e3b6cc6a8b62ee5a52f780941a43de8b (diff) |
codec-cfg.c: Remove bogus printf argument
Two printf calls had a bogus argument that did not match the format
string. Remove.
-rw-r--r-- | codec-cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/codec-cfg.c b/codec-cfg.c index d14eaff5d7..1de5d052c7 100644 --- a/codec-cfg.c +++ b/codec-cfg.c @@ -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]); |