summaryrefslogtreecommitdiff
path: root/tests/gimarshallingtests.c
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-10-27 12:53:52 -0400
committerColin Walters <walters@verbum.org>2012-10-27 12:53:52 -0400
commitb0fccfbf26536817b39b30b3a5b9c01e2cc2c5c5 (patch)
tree0a0affe13ea894795a0e64d1bbb4e7fcde1a1ef2 /tests/gimarshallingtests.c
parent3ee1c9f984a71903a8eeef693c6c187291f25a0b (diff)
downloadgobject-introspection-b0fccfbf26536817b39b30b3a5b9c01e2cc2c5c5.tar.gz
gmarshallingtests: Fix prototype () -> (void)
Dear Python programmers, () doesn't mean what you think it means in C.
Diffstat (limited to 'tests/gimarshallingtests.c')
-rw-r--r--tests/gimarshallingtests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gimarshallingtests.c b/tests/gimarshallingtests.c
index 3d6e3453..81a6144c 100644
--- a/tests/gimarshallingtests.c
+++ b/tests/gimarshallingtests.c
@@ -4563,9 +4563,9 @@ gi_marshalling_tests_filename_list_return (void)
* Returns: (transfer full): a #GParamSpec
*/
GParamSpec *
-gi_marshalling_tests_param_spec_return()
+gi_marshalling_tests_param_spec_return (void)
{
- return g_param_spec_string("test-param", "test", "This is a test", "42", G_PARAM_READABLE);
+ return g_param_spec_string ("test-param", "test", "This is a test", "42", G_PARAM_READABLE);
}
/**