From ec806d72c0dd09b33772b13974229273d4459c15 Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Mon, 20 Dec 1999 01:34:19 +0000
Subject: [PATCH] Clean up some minor gcc warnings.

---
 src/bin/psql/input.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/psql/input.c b/src/bin/psql/input.c
index 250f1233ea6..1775dffb834 100644
--- a/src/bin/psql/input.c
+++ b/src/bin/psql/input.c
@@ -32,7 +32,7 @@ gets_interactive(const char *prompt)
 
 #ifdef USE_READLINE
 	if (useReadline)
-		s = readline(prompt);
+		s = readline((char *) prompt);
 	else
 	{
 #endif
@@ -135,7 +135,7 @@ saveHistory(const char *fname)
 #ifdef USE_HISTORY
 	if (useHistory)
 	{
-		if (write_history(fname) != 0)
+		if (write_history((char *) fname) != 0)
 		{
 			perror(fname);
 			return false;
-- 
GitLab