From 13a439ec4027a442a69a46d8d5305689460c2af2 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 7 Jul 2014 21:07:29 +0200 Subject: [PATCH] qga: Add missing 'static' attribute This fixes a warning from the static code analysis (smatch). Signed-off-by: Stefan Weil Signed-off-by: Michael Tokarev --- qga/commands-posix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qga/commands-posix.c b/qga/commands-posix.c index 34ddba05314..8e6272c5a2d 100644 --- a/qga/commands-posix.c +++ b/qga/commands-posix.c @@ -643,7 +643,7 @@ typedef enum { FSFREEZE_HOOK_FREEZE, } FsfreezeHookArg; -const char *fsfreeze_hook_arg_string[] = { +static const char *fsfreeze_hook_arg_string[] = { "thaw", "freeze", }; -- 2.39.2