diff options
-rw-r--r-- | src/lib/edid.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/edid.c b/src/lib/edid.c index 7ad4136814..9cf9b8a1ed 100644 --- a/src/lib/edid.c +++ b/src/lib/edid.c @@ -817,8 +817,9 @@ cea_hdmi_block(struct edid *out, unsigned char *x) * (optionally: 3D_Detail_X and reserved) */ } - } + /* Tell static analysis we know index b is left unused. */ + (void)b; } } |