summaryrefslogtreecommitdiff
path: root/libsecret/secret-prompt.h
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2019-01-19 22:29:20 +0100
committerNiels De Graef <nielsdegraef@gmail.com>2019-01-19 23:59:02 +0100
commitb483b15d9d5c9c95f5a421ed010bf5d0644994c4 (patch)
treefbd5ecdf8572c5a04c9b7591582106a170b2ae8e /libsecret/secret-prompt.h
parent763e04f763a4bd27537fe132848cc887769d272a (diff)
downloadlibsecret-b483b15d9d5c9c95f5a421ed010bf5d0644994c4.tar.gz
Don't end G_DEFINE_AUTOPTR_CLEANUP_FUNC with a ;
Normally it shouldn't matter too much, but the GIR parser apparently doesn't like it: ``` /home/niels/gnome/libsecret/libsecret/secret-schema.h:75: syntax error, unexpected ';' in ';' at ';' /home/niels/gnome/libsecret/libsecret/secret-prompt.h:78: syntax error, unexpected ';' in ';' at ';' /home/niels/gnome/libsecret/libsecret/secret-value.h:54: syntax error, unexpected ';' in ';' at ';' /home/niels/gnome/libsecret/libsecret/secret-service.h:307: syntax error, unexpected ';' in ';' at ';' /home/niels/gnome/libsecret/libsecret/secret-collection.h:176: syntax error, unexpected ';' in ';' at ';' /home/niels/gnome/libsecret/libsecret/secret-item.h:194: syntax error, unexpected ';' in ';' at ';' ```
Diffstat (limited to 'libsecret/secret-prompt.h')
-rw-r--r--libsecret/secret-prompt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsecret/secret-prompt.h b/libsecret/secret-prompt.h
index a8d1313..aa94463 100644
--- a/libsecret/secret-prompt.h
+++ b/libsecret/secret-prompt.h
@@ -75,7 +75,7 @@ GVariant * secret_prompt_perform_finish (SecretPrompt *self,
GAsyncResult *result,
GError **error);
-G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretPrompt, g_object_unref);
+G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretPrompt, g_object_unref)
G_END_DECLS