summaryrefslogtreecommitdiff
path: root/tests/testboundaries_ucd.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testboundaries_ucd.c')
-rw-r--r--tests/testboundaries_ucd.c7
1 files changed, 5 insertions, 2 deletions
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);