From 00d865ea185b612b6a6fbdf0e2f8c955b84d4da2 Mon Sep 17 00:00:00 2001 From: girish <girish> Date: Tue, 29 Jul 2008 11:22:55 +0000 Subject: [PATCH] Cleanup compiler warnings. b=15981 i=adilger i=robert.read --- lustre/ptlrpc/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/ptlrpc/client.c b/lustre/ptlrpc/client.c index 35c6e01c9a..f8f03ee7a0 100644 --- a/lustre/ptlrpc/client.c +++ b/lustre/ptlrpc/client.c @@ -496,7 +496,7 @@ static struct ptlrpc_request *ptlrpc_prep_req_from_pool(struct ptlrpc_request_po struct ptlrpc_request * ptlrpc_prep_req_pool(struct obd_import *imp, __u32 version, int opcode, - int count, int *lengths, char **bufs, + int count, __u32 *lengths, char **bufs, struct ptlrpc_request_pool *pool) { struct ptlrpc_request *request = NULL; @@ -565,7 +565,7 @@ ptlrpc_prep_req_pool(struct obd_import *imp, __u32 version, int opcode, struct ptlrpc_request * ptlrpc_prep_req(struct obd_import *imp, __u32 version, int opcode, int count, - int *lengths, char **bufs) + __u32 *lengths, char **bufs) { return ptlrpc_prep_req_pool(imp, version, opcode, count, lengths, bufs, NULL); -- GitLab