diff options
author | David Howells <dhowells@redhat.com> | 2007-04-27 15:28:45 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-04-27 15:28:45 -0700 |
commit | b1bdb691c3c38b4fbaf99fa8474f5cfa99b2d774 (patch) | |
tree | aab0b09167997e5d5269bd5465bf99a41333e68b /fs/afs/rxrpc.c | |
parent | 47051a2152f8b2355ee70249a0faaf7b682e8ce5 (diff) | |
download | linux-3.10-b1bdb691c3c38b4fbaf99fa8474f5cfa99b2d774.tar.gz linux-3.10-b1bdb691c3c38b4fbaf99fa8474f5cfa99b2d774.tar.bz2 linux-3.10-b1bdb691c3c38b4fbaf99fa8474f5cfa99b2d774.zip |
[AF_RXRPC/AFS]: Arch-specific fixes.
Fixes for various arch compilation problems:
(*) Missing module exports.
(*) Variable name collision when rxkad and af_rxrpc both built in
(rxrpc_debug).
(*) Large constant representation problem (AFS_UUID_TO_UNIX_TIME).
(*) Configuration dependencies.
(*) printk() format warnings.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
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 e7b047328a3..222c1a3abbb 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"); |