From 205ae642f9e45ee911a688356bcba1e5b7646601 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Mon, 4 Jan 2016 09:38:46 +0100 Subject: [PATCH] core: fix signedness of NMPolicyPrivate.reset_retries_id --- src/nm-policy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */