diff options
author | Marek Lindner <lindner_marek@yahoo.de> | 2012-03-17 15:28:34 +0800 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2012-05-11 13:56:06 +0200 |
commit | fefa53297112f85d99d77374c745e247ba78831c (patch) | |
tree | 3328f0f112b75b3342f9b05560fcee82ab0e5dd7 /net | |
parent | 13b2541b11b1df346805f0869c843635ceb0229f (diff) | |
download | linux-3.10-fefa53297112f85d99d77374c745e247ba78831c.tar.gz linux-3.10-fefa53297112f85d99d77374c745e247ba78831c.tar.bz2 linux-3.10-fefa53297112f85d99d77374c745e247ba78831c.zip |
batman-adv: fix checkpatch string complaint
Regression introduced by: f76d019194e0a88c57371df169ecc979690a04c2
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/batman-adv/bat_iv_ogm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/bat_iv_ogm.c b/net/batman-adv/bat_iv_ogm.c index bafb47370b4..abd10c490fd 100644 --- a/net/batman-adv/bat_iv_ogm.c +++ b/net/batman-adv/bat_iv_ogm.c @@ -1061,8 +1061,8 @@ static void bat_iv_ogm_process(const struct ethhdr *ethhdr, if (batman_ogm_packet->flags & NOT_BEST_NEXT_HOP) { bat_dbg(DBG_BATMAN, bat_priv, - "Drop packet: ignoring all packets not forwarded from " - "the best next hop (sender: %pM)\n", ethhdr->h_source); + "Drop packet: ignoring all packets not forwarded from the best next hop (sender: %pM)\n", + ethhdr->h_source); return; } |