diff options
author | Mike Marshall <hubcap@omnibond.com> | 2016-01-19 20:04:40 +0300 |
---|---|---|
committer | Mike Marshall <hubcap@omnibond.com> | 2016-01-19 20:04:40 +0300 |
commit | cf0c27715bd640628d39421f3d232c87d7e08954 (patch) | |
tree | a68dcd707a5d0674b72d25c4548bc27ea2430691 /fs/orangefs/devorangefs-req.c | |
parent | 5e1f3938f9e4ef539031d639879cb1cea870fab5 (diff) | |
download | linux-cf0c27715bd640628d39421f3d232c87d7e08954.tar.xz |
Orangefs: make gossip statement more palatable to xtensa
Thanks to Intel's kbuild test robot
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/devorangefs-req.c')
-rw-r--r-- | fs/orangefs/devorangefs-req.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/orangefs/devorangefs-req.c b/fs/orangefs/devorangefs-req.c index 0f01d3edfc2b..5da5ef616b85 100644 --- a/fs/orangefs/devorangefs-req.c +++ b/fs/orangefs/devorangefs-req.c @@ -275,10 +275,10 @@ static ssize_t orangefs_devreq_write_iter(struct kiocb *iocb, ret); if (total < MAX_DEV_REQ_DOWNSIZE) { - gossip_err("%s: total:%d: must be at least:%lu:\n", + gossip_err("%s: total:%d: must be at least:%u:\n", __func__, total, - MAX_DEV_REQ_DOWNSIZE); + (unsigned int) MAX_DEV_REQ_DOWNSIZE); ret = -EFAULT; goto out; } |