[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 1/9] qemu-edid: drop cast
From: |
Gerd Hoffmann |
Subject: |
[PULL 1/9] qemu-edid: drop cast |
Date: |
Wed, 14 Oct 2020 10:21:41 +0200 |
Not needed and makes some compilers error out with:
qemu-edid.c:15:1: error: initializer element is not constant
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-id: 20201013091615.14166-1-kraxel@redhat.com
---
qemu-edid.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qemu-edid.c b/qemu-edid.c
index 1db3372b982c..1cd6a9517238 100644
--- a/qemu-edid.c
+++ b/qemu-edid.c
@@ -9,7 +9,7 @@
#include "qemu/cutils.h"
#include "hw/display/edid.h"
-static qemu_edid_info info = (qemu_edid_info) {
+static qemu_edid_info info = {
.prefx = 1024,
.prefy = 768,
};
--
2.27.0
- [PULL 0/9] Ui 20201014 patches, Gerd Hoffmann, 2020/10/14
- [PULL 8/9] input-linux: Reset il->fd handler before closing it, Gerd Hoffmann, 2020/10/14
- [PULL 4/9] win32: Simplify gmtime_r detection not depends on if _POSIX_C_SOURCE are defined on msys2/mingw, Gerd Hoffmann, 2020/10/14
- [PULL 2/9] curses: Fixes compiler error that complain don't have langinfo.h on msys2/mingw, Gerd Hoffmann, 2020/10/14
- [PULL 7/9] SDL: enable OpenGL context creation, Gerd Hoffmann, 2020/10/14
- [PULL 9/9] ui: Fix default window_id value, Gerd Hoffmann, 2020/10/14