From 8fb4e001e9c185250a95b2b13880a2a04d626b75 Mon Sep 17 00:00:00 2001 From: Peter Geoghegan Date: Thu, 22 Sep 2022 13:27:16 -0700 Subject: Harmonize more lexer function parameter names. Make sure that function declarations use names that exactly match the corresponding names from function definitions for several "lexer adjacent" backend functions. These were missed by commit aab06442. Author: Peter Geoghegan Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com --- src/include/bootstrap/bootstrap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/bootstrap') diff --git a/src/include/bootstrap/bootstrap.h b/src/include/bootstrap/bootstrap.h index 89f5b01b31a..c825adc4037 100644 --- a/src/include/bootstrap/bootstrap.h +++ b/src/include/bootstrap/bootstrap.h @@ -57,6 +57,6 @@ extern void boot_get_type_io_data(Oid typid, extern int boot_yyparse(void); extern int boot_yylex(void); -extern void boot_yyerror(const char *str) pg_attribute_noreturn(); +extern void boot_yyerror(const char *message) pg_attribute_noreturn(); #endif /* BOOTSTRAP_H */ -- cgit v1.2.3