Commit bc164e51 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix uninitialised variable.

parent 37d3811b
......@@ -1185,7 +1185,7 @@ int
kernel_callback(int (*fn)(int, void*), void *closure)
{
int rc;
int changed;
int changed = 0;
kdebugf("\nReceived changes in kernel tables.\n");
......
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