From: Julien Grall <[email protected]> xen-init-dom0 is a standalone binary, so all the functions but the main() should be static.
Signed-off-by: Julien Grall <[email protected]> Cc: [email protected] --- tools/helpers/xen-init-dom0.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/helpers/xen-init-dom0.c b/tools/helpers/xen-init-dom0.c index 56f69ab66f..c99224a4b6 100644 --- a/tools/helpers/xen-init-dom0.c +++ b/tools/helpers/xen-init-dom0.c @@ -12,7 +12,7 @@ #define DOMNAME_PATH "/local/domain/0/name" #define DOMID_PATH "/local/domain/0/domid" -int clear_domid_history(void) +static int clear_domid_history(void) { int rc = 1; xentoollog_logger_stdiostream *logger; -- 2.17.1 _______________________________________________ Xen-devel mailing list [email protected] https://lists.xenproject.org/mailman/listinfo/xen-devel
