summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMarc-André Lureau2022-03-11 23:22:02 +0100
committerMarc-André Lureau2022-03-22 11:46:18 +0100
commite0e7fe07e1ef55432b4f9e59d663199f971d8ed2 (patch)
treeb4d03fdb6829a26e5809b67c5f9879a2cc9eb493 /configure
parenttests: remove needless include (diff)
downloadqemu-e0e7fe07e1ef55432b4f9e59d663199f971d8ed2.tar.gz
qemu-e0e7fe07e1ef55432b4f9e59d663199f971d8ed2.tar.xz
qemu-e0e7fe07e1ef55432b4f9e59d663199f971d8ed2.zip
Remove trailing ; after G_DEFINE_AUTO macro
The macro doesn't need it. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 9e9b85147a..6d9cb23ac5 100755
--- a/configure
+++ b/configure
@@ -2248,7 +2248,7 @@ static void foo_free(Foo *f)
{
g_free(f);
}
-G_DEFINE_AUTOPTR_CLEANUP_FUNC(Foo, foo_free);
+G_DEFINE_AUTOPTR_CLEANUP_FUNC(Foo, foo_free)
int main(void) { return 0; }
EOF
if ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then