diff options
author | Marek Lindner <lindner_marek@yahoo.de> | 2011-06-09 17:13:09 +0200 |
---|---|---|
committer | Sven Eckelmann <sven@narfation.org> | 2011-06-09 20:40:38 +0200 |
commit | ecbd532108cb21d9d3770f73e168bad65d14d9eb (patch) | |
tree | 2755df4a468d6d146e20bed8306e8c76c74f1ce9 /net/batman-adv/send.c | |
parent | e8958dbf0da377e11f385a9888da3f72e827ab26 (diff) | |
download | linux-ecbd532108cb21d9d3770f73e168bad65d14d9eb.tar.bz2 |
batman-adv: use NO_FLAGS define instead of hard-coding 0
The definition NO_FLAGS was introduced to make the code more
readable and shall be used to initialize flag fields.
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv/send.c')
-rw-r--r-- | net/batman-adv/send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/send.c b/net/batman-adv/send.c index d0cfa95e3037..a1b8c3173a3f 100644 --- a/net/batman-adv/send.c +++ b/net/batman-adv/send.c @@ -289,7 +289,7 @@ void schedule_own_packet(struct hard_iface *hard_iface) batman_packet->gw_flags = (uint8_t)atomic_read(&bat_priv->gw_bandwidth); else - batman_packet->gw_flags = 0; + batman_packet->gw_flags = NO_FLAGS; atomic_inc(&hard_iface->seqno); |