diff options
author | Beniamino Galvani <bgalvani@redhat.com> | 2016-01-04 09:38:46 +0100 |
---|---|---|
committer | Beniamino Galvani <bgalvani@redhat.com> | 2016-01-06 21:25:55 +0100 |
commit | 205ae642f9e45ee911a688356bcba1e5b7646601 (patch) | |
tree | 953deae1ae62f689ce970a11e1a434811eb50774 | |
parent | 272098e48b532ad2b39e55130214c069a1c42b4b (diff) | |
download | NetworkManager-205ae642f9e45ee911a688356bcba1e5b7646601.tar.gz |
core: fix signedness of NMPolicyPrivate.reset_retries_id
-rw-r--r-- | src/nm-policy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nm-policy.c b/src/nm-policy.c index cfa3d97358..77c2b39342 100644 --- a/src/nm-policy.c +++ b/src/nm-policy.c @@ -73,7 +73,7 @@ typedef struct { NMDnsManager *dns_manager; gulong config_changed_id; - gint reset_retries_id; /* idle handler for resetting the retries count */ + guint reset_retries_id; /* idle handler for resetting the retries count */ char *orig_hostname; /* hostname at NM start time */ char *cur_hostname; /* hostname we want to assign */ |