diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-04-28 01:20:37 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-04-28 01:20:37 +0200 |
commit | 42fae7fb1c27d230fbd48aa055a4ae6796fb0039 (patch) | |
tree | 94836c3535cf7e972cdc2ea65598fa2182b20fa3 /fs/afs/rxrpc.c | |
parent | Merge git://git.infradead.org/mtd-2.6 (diff) | |
parent | [NET]: Fix networking compilation errors (diff) | |
download | linux-42fae7fb1c27d230fbd48aa055a4ae6796fb0039.tar.xz linux-42fae7fb1c27d230fbd48aa055a4ae6796fb0039.zip |
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6:
[NET]: Fix networking compilation errors
[AF_RXRPC/AFS]: Arch-specific fixes.
[AFS]: Fix VLocation record update wakeup
[NET]: Revert sk_buff walker cleanups.
Diffstat (limited to 'fs/afs/rxrpc.c')
-rw-r--r-- | fs/afs/rxrpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/rxrpc.c b/fs/afs/rxrpc.c index e7b047328a39..222c1a3abbb8 100644 --- a/fs/afs/rxrpc.c +++ b/fs/afs/rxrpc.c @@ -772,7 +772,7 @@ int afs_extract_data(struct afs_call *call, struct sk_buff *skb, if (call->offset < count) { if (last) { - _leave(" = -EBADMSG [%d < %lu]", call->offset, count); + _leave(" = -EBADMSG [%d < %zu]", call->offset, count); return -EBADMSG; } _leave(" = -EAGAIN"); |