diff options
author | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2020-01-23 10:54:49 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2020-01-23 10:54:49 +0100 |
commit | 637caa7a66571c308f1083009b0d624bc1cc481c (patch) | |
tree | 22b294a2c678517c206aac868713e0d9b332f75c /parse-ls-ext-block.cpp | |
parent | ed86dcc1b1961dd8ae2cc40ef1b64c35357aa76d (diff) |
edid-decode: language ID needs quotes as well
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Diffstat (limited to 'parse-ls-ext-block.cpp')
-rw-r--r-- | parse-ls-ext-block.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-ls-ext-block.cpp b/parse-ls-ext-block.cpp index 07c31a0..4898e6b 100644 --- a/parse-ls-ext-block.cpp +++ b/parse-ls-ext-block.cpp @@ -39,7 +39,7 @@ static void parse_string_table(const unsigned char *x) if (name[0] == '@') name[0] = ' '; if (name[1] == '@') name[1] = ' '; if (name[2] == '@') name[2] = ' '; - printf(" Language ID: %s\n", name); + printf(" Language ID: '%s'\n", name); } x += 5; parse_string("Manufacturer Name", x); |