From 9e7de4276586bb369819a689eb9b35820a1a8145 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Wed, 23 Mar 2011 08:36:52 +0100 Subject: ndrdump - make "in_pipes" and "out_pipes" const In order to suppress a build warning. --- librpc/tools/ndrdump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'librpc/tools') diff --git a/librpc/tools/ndrdump.c b/librpc/tools/ndrdump.c index 284dbcedf9..01618d5d82 100644 --- a/librpc/tools/ndrdump.c +++ b/librpc/tools/ndrdump.c @@ -219,8 +219,8 @@ static NTSTATUS ndrdump_pull_and_print_pipes(const char *function, POPT_COMMON_VERSION { NULL } }; - struct ndr_interface_call_pipes *in_pipes = NULL; - struct ndr_interface_call_pipes *out_pipes = NULL; + const struct ndr_interface_call_pipes *in_pipes = NULL; + const struct ndr_interface_call_pipes *out_pipes = NULL; ndr_table_init(); -- cgit