projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
df4ef33
)
tipc: Eliminate unused argument in print statement
author
Allan Stephens
<
[email protected]
>
Tue, 11 May 2010 14:30:04 +0000
(14:30 +0000)
committer
David S. Miller
<
[email protected]
>
Thu, 13 May 2010 06:02:21 +0000
(23:02 -0700)
Eliminate an argument in a print statement that has no corresponding
format specification.
Signed-off-by: Allan Stephens <
[email protected]
>
Signed-off-by: Paul Gortmaker <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
net/tipc/link.c
patch
|
blob
|
history
diff --git
a/net/tipc/link.c
b/net/tipc/link.c
index 0b86f6aef3d872c03c6af38adcedfa7273637c5c..c95038f42652ab7d760e412c2f5b40576cec9321 100644
(file)
--- a/
net/tipc/link.c
+++ b/
net/tipc/link.c
@@
-3328,9
+3328,7
@@
static void link_print(struct link *l_ptr, struct print_buf *buf,
if (l_ptr->next_out)
tipc_printf(buf, "%u..",
msg_seqno(buf_msg(l_ptr->next_out)));
- tipc_printf(buf, "%u]",
- msg_seqno(buf_msg
- (l_ptr->last_out)), l_ptr->out_queue_size);
+ tipc_printf(buf, "%u]", msg_seqno(buf_msg(l_ptr->last_out)));
if ((mod(msg_seqno(buf_msg(l_ptr->last_out)) -
msg_seqno(buf_msg(l_ptr->first_out)))
!= (l_ptr->out_queue_size - 1)) ||