diff options
| author | Michael Biebl <biebl@debian.org> | 2017-11-07 00:14:39 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2017-11-07 00:14:39 +0100 |
| commit | 90e8691111889a7b5f3c812f5a41f15a8a058913 (patch) | |
| tree | f101a879eca27c34a9bfa5f3da52266b22539a36 /src/nm-exported-object.c | |
| parent | bdb6eeb0670658255c2a4c3c501c0a27fa8cfe55 (diff) | |
New upstream version 1.9.90 upstream/1.9.90
Diffstat (limited to 'src/nm-exported-object.c')
| -rw-r--r-- | src/nm-exported-object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nm-exported-object.c b/src/nm-exported-object.c index 0e903b89..94264caa 100644 --- a/src/nm-exported-object.c +++ b/src/nm-exported-object.c @@ -272,7 +272,7 @@ nm_exported_object_class_add_interface (NMExportedObjectClass *object_class, classinfo = g_slice_new (NMExportedObjectClassInfo); classinfo->skeleton_types = NULL; classinfo->methods = g_array_new (FALSE, FALSE, sizeof (NMExportedObjectDBusMethodImpl)); - classinfo->properties = g_hash_table_new (g_str_hash, g_str_equal); + classinfo->properties = g_hash_table_new (nm_str_hash, g_str_equal); g_type_set_qdata (G_TYPE_FROM_CLASS (object_class), nm_exported_object_class_info_quark (), classinfo); } @@ -579,7 +579,7 @@ _create_export_path (NMExportedObjectClass *klass) p = strchr (class_export_path, '%'); if (p) { if (G_UNLIKELY (!prefix_counters)) - prefix_counters = g_hash_table_new (g_str_hash, g_str_equal); + prefix_counters = g_hash_table_new (nm_str_hash, g_str_equal); nm_assert (p[1] == 'l'); nm_assert (p[2] == 'l'); |