summaryrefslogtreecommitdiff
path: root/source3/rpc_parse
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-05-17 14:26:20 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-05-17 14:26:20 +0000
commitc6926d75ddad2d4a698fe4b433b877d0ea0721a3 (patch)
tree7139f90054bfb0b8abc0d5ff0fce789969f64ba5 /source3/rpc_parse
parent6d15066afca3b1024f26548bf2909f7efeaa75db (diff)
downloadsamba-c6926d75ddad2d4a698fe4b433b877d0ea0721a3.tar.gz
samba-c6926d75ddad2d4a698fe4b433b877d0ea0721a3.tar.bz2
samba-c6926d75ddad2d4a698fe4b433b877d0ea0721a3.zip
Add a touch of const
(This used to be commit 3e93b216ddba14592a0193664c5d6bcbef898f1a)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r--source3/rpc_parse/parse_prs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_prs.c b/source3/rpc_parse/parse_prs.c
index 6d65d5cc7f..c3e4992263 100644
--- a/source3/rpc_parse/parse_prs.c
+++ b/source3/rpc_parse/parse_prs.c
@@ -73,7 +73,7 @@ void prs_dump_region(char *name, int v, prs_struct *ps,
XXXX side-effect of this function is to increase the debug depth XXXX
********************************************************************/
-void prs_debug(prs_struct *ps, int depth, char *desc, char *fn_name)
+void prs_debug(prs_struct *ps, int depth, const char *desc, char *fn_name)
{
DEBUG(5+depth, ("%s%06x %s %s\n", tab_depth(depth), ps->data_offset, fn_name, desc));
}