Commit c20ab5c5 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix definition of channels_interfere.

parent e5578b78
...@@ -290,7 +290,7 @@ route_expired(struct route *route) ...@@ -290,7 +290,7 @@ route_expired(struct route *route)
} }
static int static int
channels_interfere(unsigned char ch1, unsigned char ch2) channels_interfere(int ch1, int ch2)
{ {
if(ch1 == NET_CHANNEL_NONINTERFERING || ch2 == NET_CHANNEL_NONINTERFERING) if(ch1 == NET_CHANNEL_NONINTERFERING || ch2 == NET_CHANNEL_NONINTERFERING)
return 0; return 0;
......
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