1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-08 00:47:37 +03:00

Add some const decorations

These mainly help understanding the function signatures better.
This commit is contained in:
Peter Eisentraut
2019-02-08 10:13:24 +01:00
parent 3677a0b26b
commit 08d25d7850
2 changed files with 8 additions and 8 deletions

View File

@@ -76,7 +76,7 @@
#endif
static int
MatchText(char *t, int tlen, char *p, int plen,
MatchText(const char *t, int tlen, const char *p, int plen,
pg_locale_t locale, bool locale_is_c)
{
/* Fast path for match-everything pattern */