Commit 608e46dd authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix uninitialised variable.

parent 05fe4029
...@@ -141,7 +141,7 @@ update_jitter(struct network *net, int urgent) ...@@ -141,7 +141,7 @@ update_jitter(struct network *net, int urgent)
void void
check_networks(void) check_networks(void)
{ {
int i, rc, changed; int i, rc, changed = 0;
unsigned char ipv4[4]; unsigned char ipv4[4];
for(i = 0; i < numnets; i++) { for(i = 0; i < numnets; i++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment