diff options
author | David S. Miller <davem@davemloft.net> | 2008-01-13 06:31:29 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-29 00:02:01 +0100 |
commit | 3f4afb6443aaa1d69b2d8f0461c8191e40d54c3c (patch) | |
tree | 756558ed2362542c18f25fe80679b62a0b603043 | |
parent | [XFRM]: alg_key_len should be unsigned to avoid integer divides (diff) | |
download | linux-3f4afb6443aaa1d69b2d8f0461c8191e40d54c3c.tar.xz linux-3f4afb6443aaa1d69b2d8f0461c8191e40d54c3c.zip |
[XFRM]: Fix struct xfrm_algo code formatting.
Realign struct members.
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/linux/xfrm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/xfrm.h b/include/linux/xfrm.h index f8507eed0b79..9b5b00c4ef9d 100644 --- a/include/linux/xfrm.h +++ b/include/linux/xfrm.h @@ -91,9 +91,9 @@ struct xfrm_replay_state }; struct xfrm_algo { - char alg_name[64]; + char alg_name[64]; unsigned int alg_key_len; /* in bits */ - char alg_key[0]; + char alg_key[0]; }; struct xfrm_stats { |