qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] modules-test: fix const cast
@ 2019-08-22 17:42 Paolo Bonzini
  2019-08-23  7:13 ` Marc-André Lureau
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Paolo Bonzini @ 2019-08-22 17:42 UTC (permalink / raw)
  To: qemu-devel; +Cc: marcandre.lureau, peter.maydell

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 tests/modules-test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/modules-test.c b/tests/modules-test.c
index 3aef0e5..a8118e9 100644
--- a/tests/modules-test.c
+++ b/tests/modules-test.c
@@ -4,7 +4,7 @@
 static void test_modules_load(const void *data)
 {
     QTestState *qts;
-    const char **args = data;
+    const char **args = (const char **)data;
 
     qts = qtest_init(NULL);
     qtest_module_load(qts, args[0], args[1]);
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2019-08-27 14:27 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-22 17:42 [Qemu-devel] [PATCH] modules-test: fix const cast Paolo Bonzini
2019-08-23  7:13 ` Marc-André Lureau
2019-08-23  9:06 ` Thomas Huth
2019-08-23  9:11   ` Peter Maydell
2019-08-23 12:04     ` Paolo Bonzini
2019-08-23 12:07       ` Peter Maydell
2019-08-23 12:10         ` Paolo Bonzini
2019-08-23 12:11           ` Thomas Huth
2019-08-27 12:00           ` Peter Maydell
2019-08-27 13:38             ` Marc-André Lureau
2019-08-27 14:26               ` Peter Maydell
2019-08-23 12:32 ` Miroslav Rezanina
2019-08-23 14:13 ` Peter Maydell

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).