diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-04-15 03:27:18 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-04-15 14:11:37 -0400 |
commit | 0022d2dd4d76e0e7d5c241c343a5016fdfa2ad4f (patch) | |
tree | 2446c167fb2a7ebf354e3758948d803971d6b4bb /include/net/sctp | |
parent | ff2266cddd69f5e0c9d5121ed9218d2f694406cc (diff) | |
download | linux-3.10-0022d2dd4d76e0e7d5c241c343a5016fdfa2ad4f.tar.gz linux-3.10-0022d2dd4d76e0e7d5c241c343a5016fdfa2ad4f.tar.bz2 linux-3.10-0022d2dd4d76e0e7d5c241c343a5016fdfa2ad4f.zip |
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/net/sctp')
-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 3e80eedab17..e12aa77abc5 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h @@ -1176,7 +1176,7 @@ struct sctp_ep_common { * dead - Do not attempt to use this object. */ atomic_t refcnt; - char dead; + bool dead; /* What socket does this endpoint belong to? */ struct sock *sk; |