diff options
author | joevt <joevt@shaw.ca> | 2021-09-14 05:11:24 -0700 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2021-09-15 12:28:52 +0200 |
commit | 6cacb5de7403ae9e834bf356baca61d8169bbc07 (patch) | |
tree | e28efe6e46cc675a4806a057111a623708edb79e | |
parent | d2705adbbbf1e05f2c25cfb4e0698ab1e9de9f89 (diff) |
edid-decode: linefeed before fail
Always output linefeed before fail message.
See example dell-up2715k-dp1-optomedia-cmv535.
Signed-off-by: Joe van Tunen <joevt@shaw.ca>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
-rw-r--r-- | parse-base-block.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-base-block.cpp b/parse-base-block.cpp index e2901a6..eacbd81 100644 --- a/parse-base-block.cpp +++ b/parse-base-block.cpp @@ -701,9 +701,9 @@ void edid_state::detailed_display_range_limits(const unsigned char *x) base.max_display_pixclk_khz = x[9] * 10000; printf(", max dotclock %d MHz\n", x[9] * 10); } else { + printf("\n"); if (base.edid_minor >= 4) fail("EDID 1.4 block does not set max dotclock.\n"); - printf("\n"); } if (has_sec_gtf) { |