diff options
| author | Peter Geoghegan | 2022-09-22 20:27:16 +0000 |
|---|---|---|
| committer | Peter Geoghegan | 2022-09-22 20:27:16 +0000 |
| commit | 8fb4e001e9c185250a95b2b13880a2a04d626b75 (patch) | |
| tree | 97e33d57f38dd0f7db922b2d76954dbf4803858a /src/include/bootstrap | |
| parent | 3535ebce5dc542b90f14d6e81cce80fe7226bda5 (diff) | |
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 <pg@bowt.ie>
Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com
Diffstat (limited to 'src/include/bootstrap')
| -rw-r--r-- | src/include/bootstrap/bootstrap.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |
