Re: [PATCH-for-7.0 v2] qga/vss-win32: fix compilation with clang++

2022-04-05 Thread Konstantin Kostiuk
Reviewed-by: Konstantin Kostiuk On Wed, Mar 16, 2022 at 3:58 PM Helge Konetzka wrote: > This fixes: > > qga/vss-win32/install.cpp:49:24: error: cannot initialize a variable of > type 'char *' with an rvalue of type 'const char *' > char *msg = NULL, *nul = strchr(text, '('); >

Re: ping [PATCH-for-7.0 v2] qga/vss-win32: fix compilation with clang++

2022-04-04 Thread Helge Konetzka
ping https://lore.kernel.org/qemu-devel/39400817-3dc9-516d-9096-bc1f68862...@zapateado.de/ https://patchew.org/QEMU/39400817-3dc9-516d-9096-bc1f68862...@zapateado.de/ Am 16.03.22 um 14:54 schrieb Helge Konetzka: This fixes: qga/vss-win32/install.cpp:49:24: error: cannot initialize a variable o

[PATCH-for-7.0 v2] qga/vss-win32: fix compilation with clang++

2022-03-16 Thread Helge Konetzka
This fixes: qga/vss-win32/install.cpp:49:24: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *msg = NULL, *nul = strchr(text, '('); ^ ~ Signed-off-by: Helge Konetzka Reviewed-by: Marc-André Lureau Re