From e95e9d41ca87185d4065be35e862348d24f455f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Syrj=C3=A4l=C3=A4?= Date: Sun, 15 Sep 2019 12:51:35 +0300 Subject: sna: Get rid of -Wno-shift-negative-value MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use a cast to avoid the "left shift of negative value [-Wshift-negative-value]" warning, and get rid of the suppression. Signed-off-by: Ville Syrjälä --- src/sna/meson.build | 1 - src/sna/sna_trapezoids_mono.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/sna/meson.build b/src/sna/meson.build index 7408f63c..e1eb25f2 100644 --- a/src/sna/meson.build +++ b/src/sna/meson.build @@ -131,7 +131,6 @@ sna = static_library('sna', c_args : [ '-Wno-unused-but-set-variable', '-Wno-expansion-to-defined', - '-Wno-shift-negative-value', '-Wno-maybe-uninitialized', '-Wno-unused-parameter', '-Wno-unused-function', diff --git a/src/sna/sna_trapezoids_mono.c b/src/sna/sna_trapezoids_mono.c index 07a7867d..1582c96c 100644 --- a/src/sna/sna_trapezoids_mono.c +++ b/src/sna/sna_trapezoids_mono.c @@ -657,7 +657,7 @@ mono_init(struct mono *c, int num_edges) c->head.dy = 0; c->head.height_left = INT_MAX; - c->head.x.quo = INT16_MIN << 16; + c->head.x.quo = (uint32_t)INT16_MIN << 16; c->head.prev = NULL; c->head.next = &c->tail; c->tail.prev = &c->head; -- cgit v1.2.3