From 4813a5210f6fb979d8f7a592f71a2f9c4d3db179 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sat, 9 Feb 2019 09:34:52 +0000 Subject: various: fix 'uninitialized when used' warnings [clang] This change fixes "warning: variable 'var' may be uninitialized when used here [-Wconditional-uninitialized]" warnings reported in various files. Signed-off-by: Sami Kerola --- sys-utils/setarch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys-utils/setarch.c') diff --git a/sys-utils/setarch.c b/sys-utils/setarch.c index 703c36d86..31016f7f1 100644 --- a/sys-utils/setarch.c +++ b/sys-utils/setarch.c @@ -266,7 +266,7 @@ int main(int argc, char *argv[]) int verbose = 0; int archwrapper; int c; - struct arch_domain *doms, *target; + struct arch_domain *doms, *target = NULL; unsigned long pers_value = 0; char *shell = NULL, *shell_arg = NULL; -- cgit v1.2.3-55-g7522