From 0636d55843b7e042aa6088f031926317c1c6212c Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Mon, 25 Oct 2004 02:30:29 +0000
Subject: [PATCH] Fix some more 'old-style parameter declaration' warnings.

---
 contrib/tsearch/parser.l             | 19 +++++++++++++------
 contrib/tsearch2/wordparser/parser.l | 24 +++++++++++++++++-------
 2 files changed, 30 insertions(+), 13 deletions(-)

diff --git a/contrib/tsearch/parser.l b/contrib/tsearch/parser.l
index 3eb411dded3..19a37e27b35 100644
--- a/contrib/tsearch/parser.l
+++ b/contrib/tsearch/parser.l
@@ -274,18 +274,25 @@ ftp"://"        {
 %%
 
 /* clearing after parsing from string */
-void end_parse() {
-	if (s) { free(s); s=NULL; } 
+void
+end_parse(void)
+{
+	if (s)
+	{
+		free(s);
+		s = NULL;
+	} 
 	tsearch_yy_delete_buffer( buf );
 	buf = NULL;
 } 
 
 /* start parse from string */
-void start_parse_str(char* str, int limit) {
-	if (buf) end_parse();
+void
+start_parse_str(char* str, int limit)
+{
+	if (buf)
+		end_parse();
 	buf = tsearch_yy_scan_bytes( str, limit );
 	tsearch_yy_switch_to_buffer( buf );
 	BEGIN INITIAL;
 }
-
-
diff --git a/contrib/tsearch2/wordparser/parser.l b/contrib/tsearch2/wordparser/parser.l
index 8c46edf7b8b..179c99c9dac 100644
--- a/contrib/tsearch2/wordparser/parser.l
+++ b/contrib/tsearch2/wordparser/parser.l
@@ -23,7 +23,8 @@ typedef struct {
 static TagStorage ts={0,0,NULL};
 
 static void
-addTag() {
+addTag(void)
+{
 	while( ts.clen+tsearch2_yyleng+1 > ts.tlen ) {
 		ts.tlen*=2;
 		ts.str=realloc(ts.str,ts.tlen);
@@ -38,7 +39,8 @@ addTag() {
 }
 
 static void
-startTag() {
+startTag(void)
+{
 	if ( ts.str==NULL ) {
 		ts.tlen=tsearch2_yyleng+1;
 		ts.str=malloc(ts.tlen);
@@ -319,17 +321,25 @@ ftp"://"        {
 %%
 
 /* clearing after parsing from string */
-void tsearch2_end_parse() {
-	if (s) { free(s); s=NULL; } 
+void
+tsearch2_end_parse(void)
+{
+	if (s)
+	{
+		free(s);
+		s = NULL;
+	} 
 	tsearch2_yy_delete_buffer( buf );
 	buf = NULL;
 } 
 
 /* start parse from string */
-void tsearch2_start_parse_str(char* str, int limit) {
-	if (buf) tsearch2_end_parse();
+void
+tsearch2_start_parse_str(char* str, int limit)
+{
+	if (buf)
+		tsearch2_end_parse();
 	buf = tsearch2_yy_scan_bytes( str, limit );
 	tsearch2_yy_switch_to_buffer( buf );
 	BEGIN INITIAL;
 }
-
-- 
GitLab