From aa39cc37dab9c4f8c3295d872bb8cc143890b378 Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Fri, 15 Aug 2003 04:42:05 +0000 Subject: get rid of more compiler warnings (This used to be commit 398bd14fc6e2f8ab2f34211270e179b8928a6669) --- source3/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/client') diff --git a/source3/client/client.c b/source3/client/client.c index c4407b8c31..67fadd11a8 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2186,7 +2186,7 @@ static int cmd_help(void) static int process_command_string(char *cmd) { pstring line; - char *ptr; + const char *ptr; int rc = 0; /* establish the connection if not already */ @@ -2460,7 +2460,7 @@ static void readline_callback(void) static void process_stdin(void) { - char *ptr; + const char *ptr; while (1) { fstring tok; -- cgit