commit | 53a6201fdfa04accc91ea1a7accce8e8bc37ef8e | [log] [tgz] |
---|---|---|
author | Julia Lawall <julia@diku.dk> | Sat Mar 22 18:05:33 2008 -0700 |
committer | David S. Miller <davem@davemloft.net> | Sat Mar 22 18:05:33 2008 -0700 |
tree | 6b94d41162db9cf344116ad157a5bfd0e628377b | |
parent | 421f099bc555c5f1516fdf5060de1d6bb5f51002 [diff] |
[9P] net/9p/trans_fd.c: remove unused variable The variable cb is initialized but never used otherwise. The semantic patch that makes this change is as follows: (http://www.emn.fr/x-info/coccinelle/) // <smpl> @@ type T; identifier i; constant C; @@ ( extern T i; | - T i; <+... when != i - i = C; ...+> ) // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: David S. Miller <davem@davemloft.net>