[Spice-devel] [PATCH spice-server 0.8] client: fix two narrowing conversion c++-11 warnings
Alon Levy
alevy at redhat.com
Wed Mar 14 07:53:05 PDT 2012
Warnings are from initializing members of type int from uint32_t. Fix is
to change alt_image and red_icon height and width fields to ints.
Example warning fixed:
res.cpp:58:1: error: narrowing conversion of ‘_red_icon.<anonymous
struct>::width’ from ‘const uint32_t {aka const unsigned int}’ to ‘int’
inside { } is ill-formed in C++11 [-Werror=narrowing]
Signed-off-by: Alon Levy <alevy at redhat.com>
---
client/x11/images/alt_image.c | 4 ++--
client/x11/images/red_icon.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/client/x11/images/alt_image.c b/client/x11/images/alt_image.c
index 7968339..e11cf1f 100644
--- a/client/x11/images/alt_image.c
+++ b/client/x11/images/alt_image.c
@@ -1,6 +1,6 @@
static const struct {
- uint32_t width;
- uint32_t height;
+ int width;
+ int height;
uint8_t pixel_data[17496];
} _alt_image = { 81, 54, {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
diff --git a/client/x11/images/red_icon.c b/client/x11/images/red_icon.c
index ce1a7d4..143d4e2 100644
--- a/client/x11/images/red_icon.c
+++ b/client/x11/images/red_icon.c
@@ -1,6 +1,6 @@
static const struct {
- uint32_t width;
- uint32_t height;
+ int width;
+ int height;
uint8_t pixmap[4096];
uint8_t mask[128];
} _red_icon = { 32, 32, {
--
1.7.9.3
More information about the Spice-devel
mailing list