Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 150827
b: refs/heads/master
c: e5241c4
h: refs/heads/master
i:
  150825: f88cfed
  150823: c8955a6
v: v3
  • Loading branch information
David S. Miller committed Jun 11, 2009
1 parent 3ffa723 commit 5ccf863
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 84503ddd65e804ccdeedee3f307b40d80ff793e6
refs/heads/master: e5241c448f94feee40b2a285c8bf55d066420073
2 changes: 1 addition & 1 deletion trunk/net/ieee802154/dgram.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ static int dgram_sendmsg(struct kiocb *iocb, struct sock *sk,
goto out_skb;

if (size > mtu) {
pr_debug("size = %u, mtu = %u\n", size, mtu);
pr_debug("size = %Zu, mtu = %u\n", size, mtu);
err = -EINVAL;
goto out_skb;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/ieee802154/raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ static int raw_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
pr_debug("name = %s, mtu = %u\n", dev->name, mtu);

if (size > mtu) {
pr_debug("size = %u, mtu = %u\n", size, mtu);
pr_debug("size = %Zu, mtu = %u\n", size, mtu);
err = -EINVAL;
goto out_dev;
}
Expand Down

0 comments on commit 5ccf863

Please sign in to comment.