On Thu, 3 Mar 2016 16:19:34 +0100 Nikolay Aleksandrov <[email protected]> wrote:
> +static int is_temp_mcast_rtr(__u8 type)
> {
> + if (type == MDB_RTR_TYPE_TEMP_QUERY || type == MDB_RTR_TYPE_TEMP)
> + return 1;
> + else
> + return 0;
> +}
> +
Minor style issues, why not much simpler:
static bool is_tmp_mcast_rtr(__u8 type)
{
return (type == MDB_RTR_TYPE_TEMP_QUERY || type == MDB_RTR_TYPE_TEMP);
}
