test-libglnx-macros.c: fix missing semicolon

This commit is contained in:
Jonathan Lebon
2017-06-17 14:52:26 -04:00
parent 9a1b77ef96
commit e8b7d8f60c

View File

@@ -37,7 +37,7 @@ test_inset (void)
g_assert (!G_IN_SET (8, 7,42,3,9));
g_assert (!G_IN_SET (-1, 7,42,3,9));
g_assert (G_IN_SET ('x', 'a', 'x', 'c'));
g_assert (!G_IN_SET ('y', 'a', 'x', 'c'))
g_assert (!G_IN_SET ('y', 'a', 'x', 'c'));
}
int main (int argc, char **argv)