diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2018-01-02 15:47:37 +0100 |
---|---|---|
committer | Lubomir Rintel <lkundrak@v3.sk> | 2018-01-18 11:45:36 +0100 |
commit | 8a46b25cfa8c33daa8af37bb8103ca02286001b1 (patch) | |
tree | 1725f84d8c42af42d1153aeaa71e63be8854bc93 /src/nm-config.c | |
parent | 1443bf77e8cefc6f2d49f1e7f4140155ad73551b (diff) | |
download | NetworkManager-lr/glib-2-40.tar.gz |
all: require glib 2.40lr/glib-2-40
RHEL 7.1 and Ubuntu 14.04 LTS both have this.
https://bugzilla.gnome.org/show_bug.cgi?id=792323
Diffstat (limited to 'src/nm-config.c')
-rw-r--r-- | src/nm-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nm-config.c b/src/nm-config.c index 3b011fdd1b..118a50ca72 100644 --- a/src/nm-config.c +++ b/src/nm-config.c @@ -2113,7 +2113,7 @@ nm_config_device_state_load_all (void) if (!state) continue; - if (!nm_g_hash_table_insert (states, GINT_TO_POINTER (ifindex), state)) + if (!g_hash_table_insert (states, GINT_TO_POINTER (ifindex), state)) nm_assert_not_reached (); } g_dir_close (dir); |