diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-04-14 23:27:18 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-04-15 14:11:37 -0400 |
commit | 0022d2dd4d76e0e7d5c241c343a5016fdfa2ad4f (patch) | |
tree | 2446c167fb2a7ebf354e3758948d803971d6b4bb /include | |
parent | ff2266cddd69f5e0c9d5121ed9218d2f694406cc (diff) |
net: sctp: minor: make sctp_ep_common's member 'dead' a bool
Since dead only holds two states (0,1), make it a bool instead
of a 'char', which is more appropriate for its purpose.
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Acked-by: Vlad Yasevich <vyasevich@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/sctp/structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index 3e80eedab17d..e12aa77abc59 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h | |||
@@ -1176,7 +1176,7 @@ struct sctp_ep_common { | |||
1176 | * dead - Do not attempt to use this object. | 1176 | * dead - Do not attempt to use this object. |
1177 | */ | 1177 | */ |
1178 | atomic_t refcnt; | 1178 | atomic_t refcnt; |
1179 | char dead; | 1179 | bool dead; |
1180 | 1180 | ||
1181 | /* What socket does this endpoint belong to? */ | 1181 | /* What socket does this endpoint belong to? */ |
1182 | struct sock *sk; | 1182 | struct sock *sk; |