summaryrefslogtreecommitdiff
path: root/librpc/gen_ndr/srv_initshutdown.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-01-22 01:19:38 +0100
committerMichael Adam <obnox@samba.org>2009-01-22 08:16:54 +0100
commitde5313cbb5d83277db638788de2ddd5743d5d0cd (patch)
tree754ea7f04f78dfdb5894b8e0abf848f9ab2f8bb6 /librpc/gen_ndr/srv_initshutdown.c
parent842d24f23dad527f47b2cbbc8c4ac21b532d181d (diff)
downloadsamba-de5313cbb5d83277db638788de2ddd5743d5d0cd.tar.gz
samba-de5313cbb5d83277db638788de2ddd5743d5d0cd.tar.bz2
samba-de5313cbb5d83277db638788de2ddd5743d5d0cd.zip
run make idl_full, thus adding explicit casts to gen_ndr server code
Michael
Diffstat (limited to 'librpc/gen_ndr/srv_initshutdown.c')
-rw-r--r--librpc/gen_ndr/srv_initshutdown.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/librpc/gen_ndr/srv_initshutdown.c b/librpc/gen_ndr/srv_initshutdown.c
index 247d83fb03..c3d0a2f2ed 100644
--- a/librpc/gen_ndr/srv_initshutdown.c
+++ b/librpc/gen_ndr/srv_initshutdown.c
@@ -249,19 +249,19 @@ NTSTATUS rpc_initshutdown_dispatch(struct rpc_pipe_client *cli, TALLOC_CTX *mem_
switch (opnum)
{
case NDR_INITSHUTDOWN_INIT: {
- struct initshutdown_Init *r = _r;
+ struct initshutdown_Init *r = (struct initshutdown_Init *)_r;
r->out.result = _initshutdown_Init(cli->pipes_struct, r);
return NT_STATUS_OK;
}
case NDR_INITSHUTDOWN_ABORT: {
- struct initshutdown_Abort *r = _r;
+ struct initshutdown_Abort *r = (struct initshutdown_Abort *)_r;
r->out.result = _initshutdown_Abort(cli->pipes_struct, r);
return NT_STATUS_OK;
}
case NDR_INITSHUTDOWN_INITEX: {
- struct initshutdown_InitEx *r = _r;
+ struct initshutdown_InitEx *r = (struct initshutdown_InitEx *)_r;
r->out.result = _initshutdown_InitEx(cli->pipes_struct, r);
return NT_STATUS_OK;
}