From bdb15719d29610ba3e56f2ade32eccc1af3eb338 Mon Sep 17 00:00:00 2001 From: isaac Date: Mon, 6 Oct 2008 19:32:07 +0000 Subject: [PATCH] i=wangdi: - fixed a typo in error message. --- lustre/osc/osc_request.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/osc/osc_request.c b/lustre/osc/osc_request.c index 40d6a7b..284e2bb 100644 --- a/lustre/osc/osc_request.c +++ b/lustre/osc/osc_request.c @@ -904,7 +904,7 @@ static int check_write_rcs(struct ptlrpc_request *req, if (req->rq_bulk->bd_nob_transferred != requested_nob) { CERROR("Unexpected # bytes transferred: %d (requested %d)\n", - requested_nob, req->rq_bulk->bd_nob_transferred); + req->rq_bulk->bd_nob_transferred, requested_nob); return(-EPROTO); } -- 1.8.3.1