From 3884d7900a1528eebeaf276aa7614d9026de5811 Mon Sep 17 00:00:00 2001 From: Juergen Gross Date: Thu, 9 Feb 2017 09:40:31 +0100 Subject: [PATCH] libxl: make one function static libxl__device_frontend_path() is used in libxl_device.c only. Make it static. Signed-off-by: Juergen Gross Reviewed-by: Wei Liu Acked-by: Ian Jackson --- tools/libxl/libxl_device.c | 2 +- tools/libxl/libxl_internal.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/libxl/libxl_device.c b/tools/libxl/libxl_device.c index c72a2b8a56..5e966762c6 100644 --- a/tools/libxl/libxl_device.c +++ b/tools/libxl/libxl_device.c @@ -18,7 +18,7 @@ #include "libxl_internal.h" -char *libxl__device_frontend_path(libxl__gc *gc, libxl__device *device) +static char *libxl__device_frontend_path(libxl__gc *gc, libxl__device *device) { char *dom_path = libxl__xs_get_dompath(gc, device->domid); diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index ee279d2c5b..5bbede532e 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -1206,7 +1206,6 @@ _hidden int libxl__device_exists(libxl__gc *gc, xs_transaction_t t, _hidden int libxl__device_generic_add(libxl__gc *gc, xs_transaction_t t, libxl__device *device, char **bents, char **fents, char **ro_fents); _hidden char *libxl__device_backend_path(libxl__gc *gc, libxl__device *device); -_hidden char *libxl__device_frontend_path(libxl__gc *gc, libxl__device *device); _hidden char *libxl__device_libxl_path(libxl__gc *gc, libxl__device *device); _hidden int libxl__parse_backend_path(libxl__gc *gc, const char *path, libxl__device *dev); -- 2.30.2