From aa809533ccd9bc5eaf78c6e1462ff5588351336f Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sun, 7 Feb 2016 18:40:25 +0100 Subject: [PATCH] Fix a maybe-uninitialized warning --- src/xbt/xbt_str.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xbt/xbt_str.c b/src/xbt/xbt_str.c index a2fb805c68..cee4235042 100644 --- a/src/xbt/xbt_str.c +++ b/src/xbt/xbt_str.c @@ -1125,7 +1125,7 @@ XBT_TEST_UNIT("xbt_str_diff", test_diff, "test the function xbt_str_diff") XBT_TEST_UNIT("xbt_str_parse", test_parse, "Test the parsing functions") { xbt_ex_t e; - int rint; + int rint = -9999; test_parse_ok(xbt_str_parse_int, "Parse int", rint, "42", 42); test_parse_ok(xbt_str_parse_int, "Parse 0 as an int", rint, "0", 0); test_parse_ok(xbt_str_parse_int, "Parse -1 as an int", rint, "-1", -1); @@ -1135,7 +1135,7 @@ XBT_TEST_UNIT("xbt_str_parse", test_parse, "Test the parsing functions") test_parse_error(xbt_str_parse_int, "Parse '' as an int", rint, ""); test_parse_error(xbt_str_parse_int, "Parse cruft as an int", rint, "cruft"); - double rdouble; + double rdouble = -9999; test_parse_ok(xbt_str_parse_double, "Parse 42 as a double", rdouble, "42", 42); test_parse_ok(xbt_str_parse_double, "Parse 42.5 as a double", rdouble, "42.5", 42.5); test_parse_ok(xbt_str_parse_double, "Parse 0 as a double", rdouble, "0", 0); -- 2.20.1