From c271fe235b1aedb7cfe9953f4f6360dc72d5e8a9 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Thu, 12 Jun 2014 16:57:42 -0400 Subject: [PATCH] VariantType: Fix typo --- glib/VariantType.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glib/VariantType.cs b/glib/VariantType.cs index f021489d3..4c716ee42 100644 --- a/glib/VariantType.cs +++ b/glib/VariantType.cs @@ -114,11 +114,11 @@ namespace GLib { } [DllImport (Global.GLibNativeDll, CallingConvention = CallingConvention.Cdecl)] - static extern bool g_variant_type_equals (IntPtr a, IntPtr b); + static extern bool g_variant_type_equal (IntPtr a, IntPtr b); public override bool Equals (object o) { - return (o is VariantType) && g_variant_type_equals (Handle, (o as VariantType).Handle); + return (o is VariantType) && g_variant_type_equal (Handle, (o as VariantType).Handle); } [DllImport (Global.GLibNativeDll, CallingConvention = CallingConvention.Cdecl)]