From: Marc-André Lureau Date: Fri, 11 Mar 2022 22:22:02 +0000 (+0400) Subject: Remove trailing ; after G_DEFINE_AUTO macro X-Git-Tag: nvme-next-pull-request~418^2~1 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=e0e7fe07e1ef55432b4f9e59d663199f971d8ed2;p=qemu-nvme.git Remove trailing ; after G_DEFINE_AUTO macro The macro doesn't need it. Signed-off-by: Marc-André Lureau Reviewed-by: Philippe Mathieu-Daudé --- 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 diff --git a/nbd/server.c b/nbd/server.c index 735381aacf..c5644fd3f6 100644 --- a/nbd/server.c +++ b/nbd/server.c @@ -2064,7 +2064,7 @@ static void nbd_extent_array_free(NBDExtentArray *ea) g_free(ea->extents); g_free(ea); } -G_DEFINE_AUTOPTR_CLEANUP_FUNC(NBDExtentArray, nbd_extent_array_free); +G_DEFINE_AUTOPTR_CLEANUP_FUNC(NBDExtentArray, nbd_extent_array_free) /* Further modifications of the array after conversion are abandoned */ static void nbd_extent_array_convert_to_be(NBDExtentArray *ea)