diff options
Diffstat (limited to 'src/bin/psql/variables.c')
-rw-r--r-- | src/bin/psql/variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/variables.c b/src/bin/psql/variables.c index 5e41efc5bde..4baa3e253a1 100644 --- a/src/bin/psql/variables.c +++ b/src/bin/psql/variables.c @@ -112,7 +112,7 @@ ParseVariableBool(const char *value) else { /* NULL is treated as false, so a non-matching value is 'true' */ - psql_error("unrecognized boolean value; assuming \"on\".\n"); + psql_error("unrecognized Boolean value; assuming \"on\"\n"); return true; } /* suppress compiler warning */ |