[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] libxl: const-correctness for libxl_uuid2string
# HG changeset patch # User Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> # Date 1280499130 -3600 # Node ID 64fa1a9c723ca60a9246283b133c85a1a81806e2 # Parent de62cfdd7b9f89c2d11916faef1087bffffe8dfc libxl: const-correctness for libxl_uuid2string Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Committed-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- tools/libxl/libxl.h | 2 +- tools/libxl/libxl_dom.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff -r de62cfdd7b9f -r 64fa1a9c723c tools/libxl/libxl.h --- a/tools/libxl/libxl.h Fri Jul 30 14:28:39 2010 +0100 +++ b/tools/libxl/libxl.h Fri Jul 30 15:12:10 2010 +0100 @@ -360,7 +360,7 @@ int libxl_run_bootloader(libxl_ctx *ctx, libxl_device_disk *disk, uint32_t domid); -char *libxl_uuid2string(libxl_ctx *ctx, uint8_t uuid[16]); +char *libxl_uuid2string(libxl_ctx *ctx, const uint8_t uuid[16]); /* 0 means ERROR_ENOMEM, which we have logged */ /* events handling */ diff -r de62cfdd7b9f -r 64fa1a9c723c tools/libxl/libxl_dom.c --- a/tools/libxl/libxl_dom.c Fri Jul 30 14:28:39 2010 +0100 +++ b/tools/libxl/libxl_dom.c Fri Jul 30 15:12:10 2010 +0100 @@ -427,7 +427,7 @@ int save_device_model(libxl_ctx *ctx, ui return 0; } -char *libxl_uuid2string(libxl_ctx *ctx, uint8_t uuid[16]) { +char *libxl_uuid2string(libxl_ctx *ctx, const uint8_t uuid[16]) { char *s = string_of_uuid(ctx, uuid); if (!s) XL_LOG(ctx, XL_LOG_ERROR, "cannot allocate for uuid"); return s; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |