diff options
author | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2019-12-01 11:45:39 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2019-12-01 11:45:39 +0100 |
commit | c5f9a59850601449b92c3932d16239d4b81347d1 (patch) | |
tree | 5a3aa3199d10513c19c293337955302f59af4134 /parse-ls-ext-block.cpp | |
parent | 71b0be20420bbebcaf9838933a126fe895a3b25f (diff) |
edid-decode: add missing pieces for DI-Ext
This extension is now fully parsed.
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 2b3aecf..c707569 100644 --- a/parse-ls-ext-block.cpp +++ b/parse-ls-ext-block.cpp @@ -12,7 +12,7 @@ static void parse_string(const char *name, const unsigned char *x) if (!*x) return; printf(" %s: ", name); - hex_block("", x + 1, *x, true, true); + hex_block("", x + 1, *x, true, *x); } static void parse_string_table(const unsigned char *x) |