diff options
author | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2020-01-21 14:03:46 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2020-01-21 14:03:46 +0100 |
commit | ce00d9bde3833c9f48d4b6019bb47135879c6aba (patch) | |
tree | c2f3a3f5bf1bce52f2b80dd73ec0c855b5cd9541 /parse-vtb-ext-block.cpp | |
parent | c42616dd4a4deacd12f4de202763af5e3a9625e8 (diff) |
edid-decode: add --preferred-timing support
Also end all warnings/failure with a .
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Diffstat (limited to 'parse-vtb-ext-block.cpp')
-rw-r--r-- | parse-vtb-ext-block.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-vtb-ext-block.cpp b/parse-vtb-ext-block.cpp index 9e2fa6d..55d7e81 100644 --- a/parse-vtb-ext-block.cpp +++ b/parse-vtb-ext-block.cpp @@ -11,7 +11,7 @@ void edid_state::parse_vtb_ext_block(const unsigned char *x) { printf("%s Version %u\n", block.c_str(), x[1]); if (x[1] != 1) - fail("Invalid version %u\n", x[1]); + fail("Invalid version %u.\n", x[1]); unsigned num_dtb = x[2]; unsigned num_cvt = x[3]; |