* [PATCH] qemu-edid: drop cast
@ 2020-10-13 9:16 Gerd Hoffmann
2020-10-13 9:23 ` Daniel P. Berrangé
2020-10-13 10:41 ` Daniel P. Berrangé
0 siblings, 2 replies; 5+ messages in thread
From: Gerd Hoffmann @ 2020-10-13 9:16 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
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>
---
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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] qemu-edid: drop cast
2020-10-13 9:16 [PATCH] qemu-edid: drop cast Gerd Hoffmann
@ 2020-10-13 9:23 ` Daniel P. Berrangé
2020-10-13 10:34 ` Gerd Hoffmann
2020-10-13 10:41 ` Daniel P. Berrangé
1 sibling, 1 reply; 5+ messages in thread
From: Daniel P. Berrangé @ 2020-10-13 9:23 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: qemu-devel
On Tue, Oct 13, 2020 at 11:16:15AM +0200, Gerd Hoffmann wrote:
> Not needed and makes some compilers error out with:
>
> qemu-edid.c:15:1: error: initializer element is not constant
Which compilers do this. If we're not seeing this failure in our
CI, then we have a CI gap that likely needs filling.
>
> Signed-off-by: Gerd Hoffmann <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
>
>
Regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] qemu-edid: drop cast
2020-10-13 9:23 ` Daniel P. Berrangé
@ 2020-10-13 10:34 ` Gerd Hoffmann
2020-10-13 10:40 ` Daniel P. Berrangé
0 siblings, 1 reply; 5+ messages in thread
From: Gerd Hoffmann @ 2020-10-13 10:34 UTC (permalink / raw)
To: Daniel P. Berrangé; +Cc: qemu-devel
On Tue, Oct 13, 2020 at 10:23:22AM +0100, Daniel P. Berrangé wrote:
> On Tue, Oct 13, 2020 at 11:16:15AM +0200, Gerd Hoffmann wrote:
> > Not needed and makes some compilers error out with:
> >
> > qemu-edid.c:15:1: error: initializer element is not constant
>
> Which compilers do this. If we're not seeing this failure in our
> CI, then we have a CI gap that likely needs filling.
x86_64-w64-mingw32-gcc (GCC) 4.9.3 20150626 (Fedora MinGW 4.9.3-1.el7)
take care,
Gerd
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] qemu-edid: drop cast
2020-10-13 10:34 ` Gerd Hoffmann
@ 2020-10-13 10:40 ` Daniel P. Berrangé
0 siblings, 0 replies; 5+ messages in thread
From: Daniel P. Berrangé @ 2020-10-13 10:40 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: qemu-devel
On Tue, Oct 13, 2020 at 12:34:46PM +0200, Gerd Hoffmann wrote:
> On Tue, Oct 13, 2020 at 10:23:22AM +0100, Daniel P. Berrangé wrote:
> > On Tue, Oct 13, 2020 at 11:16:15AM +0200, Gerd Hoffmann wrote:
> > > Not needed and makes some compilers error out with:
> > >
> > > qemu-edid.c:15:1: error: initializer element is not constant
> >
> > Which compilers do this. If we're not seeing this failure in our
> > CI, then we have a CI gap that likely needs filling.
>
> x86_64-w64-mingw32-gcc (GCC) 4.9.3 20150626 (Fedora MinGW 4.9.3-1.el7)
Oh, that's a really ancient mingw toolchain. Officially we only care
about current generation mingw toolchains ad don't try to support old
ones. Effectively this means whatever mingw is in current shipping
Fedora or MXE releases.
The fix is fine, but we don't need to worry about adding this CI after
all since its an unsupported platform.
Regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] qemu-edid: drop cast
2020-10-13 9:16 [PATCH] qemu-edid: drop cast Gerd Hoffmann
2020-10-13 9:23 ` Daniel P. Berrangé
@ 2020-10-13 10:41 ` Daniel P. Berrangé
1 sibling, 0 replies; 5+ messages in thread
From: Daniel P. Berrangé @ 2020-10-13 10:41 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: qemu-devel
On Tue, Oct 13, 2020 at 11:16:15AM +0200, Gerd Hoffmann wrote:
> 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>
> ---
> 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,
> };
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-10-13 10:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-13 9:16 [PATCH] qemu-edid: drop cast Gerd Hoffmann
2020-10-13 9:23 ` Daniel P. Berrangé
2020-10-13 10:34 ` Gerd Hoffmann
2020-10-13 10:40 ` Daniel P. Berrangé
2020-10-13 10:41 ` Daniel P. Berrangé
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).