qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] ui: Replace non-portable asprintf by g_strdup_print


From: Stefan Weil
Subject: [Qemu-devel] [PATCH] ui: Replace non-portable asprintf by g_strdup_printf
Date: Wed, 16 Jan 2013 18:38:40 +0100

Signed-off-by: Stefan Weil <address@hidden>
---

This code is untested because I don't have a Mac available.
Portability is unimportant here (it's only for cocoa),
but I replaced asprintf nevertheless for the sake of
uniformity of QEMU's code.

Regards,
Stefan Weil

 ui/cocoa.m |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ui/cocoa.m b/ui/cocoa.m
index 3bf1c6e..754b95c 100644
--- a/ui/cocoa.m
+++ b/ui/cocoa.m
@@ -813,9 +813,9 @@ QemuCocoaView *cocoaView;
 
         [sheet close];
 
-        asprintf(&argv[0], "%s", bin);
-        asprintf(&argv[1], "-hda");
-        asprintf(&argv[2], "%s", img);
+        argv[0] = g_strdup_printf("%s", bin);
+        argv[1] = g_strdup_printf("-hda");
+        argv[2] = g_strdup_printf("%s", img);
 
         printf("Using argc %d argv %s -hda %s\n", 3, bin, img);
 
-- 
1.7.10.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]