summaryrefslogtreecommitdiffstats
path: root/codec-cfg.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-03-07 01:08:02 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-03-07 01:08:02 +0200
commitb93f4b7bba0e31d157b74685d3166f74a6c244d7 (patch)
treec232386e6ef4900161ad4514beac3a91fc4fd5e8 /codec-cfg.c
parente0172b96e3b6cc6a8b62ee5a52f780941a43de8b (diff)
downloadmpv-b93f4b7bba0e31d157b74685d3166f74a6c244d7.tar.bz2
mpv-b93f4b7bba0e31d157b74685d3166f74a6c244d7.tar.xz
codec-cfg.c: Remove bogus printf argument
Two printf calls had a bogus argument that did not match the format string. Remove.
Diffstat (limited to 'codec-cfg.c')
-rw-r--r--codec-cfg.c4
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]);