From c47c61012687f9e24826c17ffec8eafbe0a2e68c Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 22 Aug 2021 02:01:33 -0400 Subject: tests: Silence compiler warnings --- tests/testboundaries_ucd.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'tests/testboundaries_ucd.c') diff --git a/tests/testboundaries_ucd.c b/tests/testboundaries_ucd.c index 0cd301f7..d9f08a57 100644 --- a/tests/testboundaries_ucd.c +++ b/tests/testboundaries_ucd.c @@ -263,6 +263,9 @@ do_test (const gchar *filename, case G_IO_STATUS_NORMAL: line[terminator_pos] = '\0'; break; + + default: + break; } g_test_message ("Parsing line: %s", line); @@ -276,7 +279,7 @@ do_test (const gchar *filename, if (! attrs_equal (attrs, expected_attrs, num_attrs, bits)) { gchar *str = make_test_string (string, attrs, bits); - gchar *comments = strchr (line, '#'); + char *comments = strchr (line, '#'); if (comments) /* don't print the # comment in the error message. print it separately */ { *comments = '\0'; @@ -284,7 +287,7 @@ do_test (const gchar *filename, } else { - comments = ""; + comments = (char *)""; } g_test_message ("%s: line %d failed", filename, i); -- cgit v1.2.1