From b618d6eedad4f051f4b1d3c9b2f9af7bbf40351a Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Mon, 25 Jul 2011 22:20:03 +0200 Subject: [PATCH] hwclock: add variable initialization The only variable found causing `conditional jump or move depends on uninitialized value' is fixed. Signed-off-by: Sami Kerola --- hwclock/hwclock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hwclock/hwclock.c b/hwclock/hwclock.c index f070b19aa7..cb5b5b64d2 100644 --- a/hwclock/hwclock.c +++ b/hwclock/hwclock.c @@ -1511,9 +1511,9 @@ int main(int argc, char **argv) /* Set option defaults */ show = set = systohc = hctosys = systz = adjust = noadjfile = predict = FALSE; - getepoch = setepoch = utc = local_opt = testing = debug = FALSE; + getepoch = setepoch = utc = local_opt = directisa = testing = debug = FALSE; #ifdef __alpha__ - ARCconsole = Jensen = SRM = funky_toy = directisa = badyear = FALSE; + ARCconsole = Jensen = SRM = funky_toy = badyear = FALSE; #endif date_opt = NULL; -- 2.47.3