summaryrefslogtreecommitdiff
path: root/src/test/isolation
diff options
context:
space:
mode:
authorPeter Geoghegan2022-09-22 20:27:16 +0000
committerPeter Geoghegan2022-09-22 20:27:16 +0000
commit8fb4e001e9c185250a95b2b13880a2a04d626b75 (patch)
tree97e33d57f38dd0f7db922b2d76954dbf4803858a /src/test/isolation
parent3535ebce5dc542b90f14d6e81cce80fe7226bda5 (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/test/isolation')
-rw-r--r--src/test/isolation/isolationtester.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/isolation/isolationtester.h b/src/test/isolation/isolationtester.h
index e00bc6b816..77134b03ba 100644
--- a/src/test/isolation/isolationtester.h
+++ b/src/test/isolation/isolationtester.h
@@ -88,6 +88,6 @@ extern TestSpec parseresult;
extern int spec_yyparse(void);
extern int spec_yylex(void);
-extern void spec_yyerror(const char *str);
+extern void spec_yyerror(const char *message);
#endif /* ISOLATIONTESTER_H */