summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Pitt <martinpitt@gnome.org>2012-07-12 08:32:56 +0200
committerMartin Pitt <martinpitt@gnome.org>2012-07-12 08:32:56 +0200
commit2554bf149415820bec2d36d3906fdd4f7b66a07c (patch)
treedcaf939fe729c15089b2b1bf23f65f61168ab606
parentec7c63212107f813deb315762954c1aed8a64220 (diff)
downloadgobject-introspection-2554bf149415820bec2d36d3906fdd4f7b66a07c.tar.gz
Fix GI_MARSHALLING_TESTS_INTERFACE2_GET_IFACE() definition
This used the non-existing G_TYPE_INSTANCE_GET_INTERFACE2 macro, likely a copy&paste error.
-rw-r--r--tests/gimarshallingtests.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gimarshallingtests.h b/tests/gimarshallingtests.h
index b687943d..eea9bb63 100644
--- a/tests/gimarshallingtests.h
+++ b/tests/gimarshallingtests.h
@@ -891,7 +891,7 @@ void gi_marshalling_tests_test_interface_test_int8_in (GIMarshallingTestsInterfa
#define GI_MARSHALLING_TESTS_TYPE_INTERFACE2 (gi_marshalling_tests_interface2_get_type ())
#define GI_MARSHALLING_TESTS_INTERFACE2(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GI_MARSHALLING_TESTS_TYPE_INTERFACE2, GIMarshallingTestsInterface2))
#define GI_MARSHALLING_TESTS_IS_INTERFACE2(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GI_MARSHALLING_TESTS_TYPE_INTERFACE2))
-#define GI_MARSHALLING_TESTS_INTERFACE2_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE2 ((obj), GI_MARSHALLING_TESTS_TYPE_INTERFACE2, GIMarshallingTestsInterface2Iface))
+#define GI_MARSHALLING_TESTS_INTERFACE2_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GI_MARSHALLING_TESTS_TYPE_INTERFACE2, GIMarshallingTestsInterface2Iface))
typedef struct _GIMarshallingTestsInterface2 GIMarshallingTestsInterface2;
typedef struct _GIMarshallingTestsInterface2Iface GIMarshallingTestsInterface2Iface;