summaryrefslogtreecommitdiff
path: root/src/bin/psql/common.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2018-12-29 12:50:59 +0100
committerPeter Eisentraut <peter@eisentraut.org>2018-12-29 12:50:59 +0100
commite3299d36a938c7af386b240f318c7b9e55bdc92d (patch)
tree777a3ab3963ecb7acccc91817234f577afc312bc /src/bin/psql/common.c
parent0a5a493f042b30afe350763820dc79bb3e6df91a (diff)
Remove redundant translation markers
psql_error() already handles that itself.
Diffstat (limited to 'src/bin/psql/common.c')
-rw-r--r--src/bin/psql/common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c
index 62c2928e6bb..8af16a5fb4e 100644
--- a/src/bin/psql/common.c
+++ b/src/bin/psql/common.c
@@ -799,19 +799,19 @@ PSQLexecWatch(const char *query, const printQueryOpt *opt)
break;
case PGRES_EMPTY_QUERY:
- psql_error(_("\\watch cannot be used with an empty query\n"));
+ psql_error("\\watch cannot be used with an empty query\n");
PQclear(res);
return -1;
case PGRES_COPY_OUT:
case PGRES_COPY_IN:
case PGRES_COPY_BOTH:
- psql_error(_("\\watch cannot be used with COPY\n"));
+ psql_error("\\watch cannot be used with COPY\n");
PQclear(res);
return -1;
default:
- psql_error(_("unexpected result status for \\watch\n"));
+ psql_error("unexpected result status for \\watch\n");
PQclear(res);
return -1;
}