From 3189fdccfe1ba2fd5d6c9b75e201998d391fd202 Mon Sep 17 00:00:00 2001 From: isaac <isaac> Date: Mon, 6 Oct 2008 20:01:11 +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 8e1e2d5c24..9dbd29d5ac 100644 --- a/lustre/osc/osc_request.c +++ b/lustre/osc/osc_request.c @@ -959,7 +959,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); } -- GitLab