diff options
| author | Michael Biebl <biebl@debian.org> | 2018-03-13 01:29:54 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2018-03-13 01:29:54 +0100 |
| commit | 7e9ff09fcb2366b383b7ebbec80d2f6fff117290 (patch) | |
| tree | e48e88b177182607488bcfd2d2645dbc77276866 /libnm-util | |
| parent | 50f6b47074e01dffb8dc536c0a20961dcf28ae9b (diff) | |
New upstream version 1.10.6 upstream/1.10.6
Diffstat (limited to 'libnm-util')
| -rw-r--r-- | libnm-util/nm-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnm-util/nm-utils.c b/libnm-util/nm-utils.c index fba87c5a..9330aaaa 100644 --- a/libnm-util/nm-utils.c +++ b/libnm-util/nm-utils.c @@ -470,7 +470,7 @@ value_dup (gpointer key, gpointer val, gpointer user_data) GValue *dup_value; dup_value = g_slice_new0 (GValue); - g_value_init (dup_value, G_VALUE_TYPE (val)); + g_value_init (dup_value, G_VALUE_TYPE (value)); g_value_copy (value, dup_value); g_hash_table_insert (table, g_strdup ((char *) key), dup_value); |