Commit 96741ade authored by Sven Eckelmann's avatar Sven Eckelmann Committed by Marek Lindner
Browse files

batman-adv: Use {} braces consistent on the arms of a statement

parent 21a1236b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -237,9 +237,10 @@ int window_protected(struct bat_priv *bat_priv, int32_t seq_num_diff,
				"old packet received, start protection\n");

			return 0;
		} else
		} else {
			return 1;
		}
	}
	return 0;
}