diff options
| author | Michael Biebl <biebl@debian.org> | 2018-10-20 01:30:31 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2018-10-20 01:30:31 +0200 |
| commit | 6518e361171f64bcaaa4bf868139362ed95cc2e0 (patch) | |
| tree | d2d5b53faf80646a40ec2c0c7f2a42b3959612f5 /libnm-core/nm-property-compare.c | |
| parent | e126f3e804c35480c4f075777430419d6ece23da (diff) | |
New upstream version 1.14.2 upstream/1.14.2
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; |