From: Jayavant Kenjalkar Date: Sun, 27 Sep 2015 05:45:21 +0000 (+0530) Subject: Staging: lustre: Fix warning detected by coccicheck X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=7fb7027c44647338962d7aa35ddeedaaa6a9f7d6;p=deliverable%2Flinux.git Staging: lustre: Fix warning detected by coccicheck Removing redundant semicolon as detected by coccicheck. Signed-off-by: Jayavant Kenjalkar Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/ptlrpc/niobuf.c b/drivers/staging/lustre/lustre/ptlrpc/niobuf.c index 22194c0ab970..bfc56cdc3916 100644 --- a/drivers/staging/lustre/lustre/ptlrpc/niobuf.c +++ b/drivers/staging/lustre/lustre/ptlrpc/niobuf.c @@ -600,7 +600,7 @@ int ptl_send_rpc(struct ptlrpc_request *request, int noreply) /* Manage remote for early replies */ reply_md.options = PTLRPC_MD_OPTIONS | LNET_MD_OP_PUT | LNET_MD_MANAGE_REMOTE | - LNET_MD_TRUNCATE; /* allow to make EOVERFLOW error */; + LNET_MD_TRUNCATE; /* allow to make EOVERFLOW error */ reply_md.user_ptr = &request->rq_reply_cbid; reply_md.eq_handle = ptlrpc_eq_h;