diff options
Diffstat (limited to 'libnm-core/nm-property-compare.c')
| -rw-r--r-- | libnm-core/nm-property-compare.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libnm-core/nm-property-compare.c b/libnm-core/nm-property-compare.c index 64ed663c..2a3ee397 100644 --- a/libnm-core/nm-property-compare.c +++ b/libnm-core/nm-property-compare.c @@ -27,7 +27,7 @@ #include "nm-property-compare.h" -static gint +static int _nm_property_compare_collection (GVariant *value1, GVariant *value2) { GVariant *child1, *child2; @@ -55,7 +55,7 @@ _nm_property_compare_collection (GVariant *value1, GVariant *value2) return 0; } -static gint +static int _nm_property_compare_vardict (GVariant *value1, GVariant *value2) { GVariantIter iter; @@ -87,7 +87,7 @@ _nm_property_compare_vardict (GVariant *value1, GVariant *value2) return 0; } -static gint +static int _nm_property_compare_strdict (GVariant *value1, GVariant *value2) { GVariantIter iter; @@ -119,7 +119,7 @@ nm_property_compare (GVariant *value1, GVariant *value2) { const GVariantType *type1; const GVariantType *type2; - gint ret; + int ret; if (value1 == value2) return 0; |