# HG changeset patch
# User emellor@xxxxxxxxxxxxxxxxxxxxxx
# Node ID ecae9e6c7331184f916c095a2ef7ff90750ed3d7
# Parent 8ffba597c385d59551a166ae4e338daa829498cb
Added cast to silence warning on 64-bit.
Signed-off-by: Ewan Mellor <ewan@xxxxxxxxxxxxx>
diff -r 8ffba597c385 -r ecae9e6c7331
linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_probe.c
--- a/linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_probe.c Sun Oct 30
14:54:15 2005
+++ b/linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_probe.c Sun Oct 30
15:25:52 2005
@@ -552,7 +552,7 @@
/* backend/<type>/... or device/<type>/... */
p = strchr(node, '/') + 1;
- snprintf(type, BUS_ID_SIZE, "%.*s", strcspn(p, "/"), p);
+ snprintf(type, BUS_ID_SIZE, "%.*s", (int)strcspn(p, "/"), p);
type[BUS_ID_SIZE-1] = '\0';
rootlen = strsep_len(node, '/', bus->levels);
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|