From e8b7d8f60ca4918aee61abe22dea959d77f4f189 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon <jlebon@redhat.com> Date: Sat, 17 Jun 2017 14:52:26 -0400 Subject: [PATCH] test-libglnx-macros.c: fix missing semicolon --- tests/test-libglnx-macros.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-libglnx-macros.c b/tests/test-libglnx-macros.c index d16c10062..d45c5cf8d 100644 --- a/tests/test-libglnx-macros.c +++ b/tests/test-libglnx-macros.c @@ -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) -- GitLab