[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 2/3] libxl: Constify src of device_compare_fn_t
All functions libxl_device_*_copy which implements device_compare_fn_t already have the `src' parameter defined with const. Signed-off-by: Anthony PERARD <anthony.perard@xxxxxxxxxx> --- tools/libxl/libxl_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index c75c98156a..34dc886505 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -3726,7 +3726,7 @@ typedef int (*device_set_default_fn_t)(libxl__gc *, uint32_t, void *, bool); typedef int (*device_to_device_fn_t)(libxl__gc *, uint32_t, void *, libxl__device *); typedef void (*device_init_fn_t)(void *); -typedef void (*device_copy_fn_t)(libxl_ctx *, void *, void *); +typedef void (*device_copy_fn_t)(libxl_ctx *, void *dst, const void *src); typedef void (*device_dispose_fn_t)(void *); typedef int (*device_compare_fn_t)(const void *, const void *); typedef void (*device_merge_fn_t)(libxl_ctx *, void *, void *); -- Anthony PERARD _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |