From af08cd21eb714abc019656bc8cee86fd7a3f20d6 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 16 Apr 2001 02:35:35 +0000 Subject: Getting medieval with compiler warnings as Jeremy puts it. (This used to be commit d05c3cf0f47a3c863adbed7ad4ab8f3248cd072d) --- source3/client/client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/client') diff --git a/source3/client/client.c b/source3/client/client.c index 7b313a3136..1d48ac0f71 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1848,13 +1848,13 @@ static void process_stdin(void) while (1) { fstring tok; - fstring prompt; + fstring the_prompt; char *line; int i; /* display a prompt */ - slprintf(prompt, sizeof(prompt)-1, "smb: %s> ", cur_dir); - line = smb_readline(prompt, readline_callback, completion_fn); + slprintf(the_prompt, sizeof(the_prompt)-1, "smb: %s> ", cur_dir); + line = smb_readline(the_prompt, readline_callback, completion_fn); if (!line) break; -- cgit