summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2012-03-14 16:51:51 +0200
committerAlon Levy <alevy@redhat.com>2012-03-14 16:51:51 +0200
commitda1b0ee3d267a611f950f3122aa513fce689506a (patch)
tree6948223bd237b10913d7dbe2aa94c419dd7e9c07
parent30f347e41ae768745d6ccb6711f1ca46ebfbe045 (diff)
client: fix two narrowing conversion c++-11 warnings0.8
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@redhat.com>
-rw-r--r--client/x11/images/alt_image.c4
-rw-r--r--client/x11/images/red_icon.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/client/x11/images/alt_image.c b/client/x11/images/alt_image.c
index 79683395..e11cf1f1 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 ce1a7d45..143d4e2d 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, {