mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-04-22 10:30:43 +02:00
trivial: suppress compiler uninitialized usage warning
Suppress a bogus warning on older compilers (gcc 4.7.2)
This commit is contained in:
parent
a84744324f
commit
7c0b43ded6
1 changed files with 1 additions and 1 deletions
|
|
@ -776,7 +776,7 @@ fill_output_connection (NMConnection *connection, NmCli *nmc, gboolean active_on
|
|||
NMActiveConnection *ac = NULL;
|
||||
const char *ac_path = NULL;
|
||||
const char *ac_state = NULL;
|
||||
NMActiveConnectionState ac_state_int;
|
||||
NMActiveConnectionState ac_state_int = NM_ACTIVE_CONNECTION_STATE_UNKNOWN;
|
||||
char *ac_dev = NULL;
|
||||
|
||||
s_con = nm_connection_get_setting_connection (connection);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue