Skip to content
Snippets Groups Projects
Commit e8b7d8f6 authored by Jonathan Lebon's avatar Jonathan Lebon
Browse files

test-libglnx-macros.c: fix missing semicolon

parent 9a1b77ef
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment