* [PATCH]: make libxl build since 21811
@ 2010-07-19 14:01 Gianni Tedesco
0 siblings, 0 replies; only message in thread
From: Gianni Tedesco @ 2010-07-19 14:01 UTC (permalink / raw)
To: Xen Devel; +Cc: Ian Campbell, Stefano Stabellini
First hunk, I assume is getting the arguments in wrong order on memset.
Second hunk is to kill a compiler warning about mis-use of printf-style
format strings which kills the build on -Werror.
Signed-off-by: Gianni Tedesco <gianni.tedesco@citrix.com>
diff -r 12f0618400de tools/libxl/libxl_bootloader.c
--- a/tools/libxl/libxl_bootloader.c Fri Jul 16 13:54:44 2010 +0100
+++ b/tools/libxl/libxl_bootloader.c Mon Jul 19 15:00:33 2010 +0100
@@ -251,7 +251,7 @@
if (temp == NULL)
goto out_err;
output = temp;
- memset(output + size_out, new_size - size_out, 0);
+ memset(output + size_out, 0, new_size - size_out);
size_out = new_size;
}
@@ -386,7 +386,7 @@
}
dom_console_xs_path = libxl_sprintf(ctx, "%s/serial/0/tty", libxl_xs_get_dompath(ctx, domid));
- libxl_xs_write(ctx, XBT_NULL, dom_console_xs_path, dom_console_slave_tty_path);
+ libxl_xs_write(ctx, XBT_NULL, dom_console_xs_path, "%s", dom_console_slave_tty_path);
pid = fork_exec_bootloader(&bootloader_fd, (char *)info->u.pv.bootloader, args);
if (pid < 0) {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-07-19 14:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-19 14:01 [PATCH]: make libxl build since 21811 Gianni Tedesco
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).