diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-07-02 21:12:46 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-07-02 21:12:46 +0300 |
commit | 2b44306315cf84479f735b12f78499616172dbb9 (patch) | |
tree | 96ae8a6b3c42cd1791b70f32fb6a0de93fceaac3 /src/bin/psql/variables.c | |
parent | 41f4a0ab789463971add986dbc778d77ec5a0ef4 (diff) | |
download | postgresql-2b44306315cf84479f735b12f78499616172dbb9.tar.gz postgresql-2b44306315cf84479f735b12f78499616172dbb9.zip |
Assorted message style improvements
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 */ |