File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4357,7 +4357,7 @@ do_watch(PQExpBuffer query_buf, double sleep)
43574357
43584358 if (!query_buf || query_buf -> len <= 0 )
43594359 {
4360- psql_error (_ ( "\\watch cannot be used with an empty query\n" ) );
4360+ psql_error ("\\watch cannot be used with an empty query\n" );
43614361 return false;
43624362 }
43634363
Original file line number Diff line number Diff line change @@ -799,19 +799,19 @@ PSQLexecWatch(const char *query, const printQueryOpt *opt)
799799 break ;
800800
801801 case PGRES_EMPTY_QUERY :
802- psql_error (_ ( "\\watch cannot be used with an empty query\n" ) );
802+ psql_error ("\\watch cannot be used with an empty query\n" );
803803 PQclear (res );
804804 return -1 ;
805805
806806 case PGRES_COPY_OUT :
807807 case PGRES_COPY_IN :
808808 case PGRES_COPY_BOTH :
809- psql_error (_ ( "\\watch cannot be used with COPY\n" ) );
809+ psql_error ("\\watch cannot be used with COPY\n" );
810810 PQclear (res );
811811 return -1 ;
812812
813813 default :
814- psql_error (_ ( "unexpected result status for \\watch\n" ) );
814+ psql_error ("unexpected result status for \\watch\n" );
815815 PQclear (res );
816816 return -1 ;
817817 }
You can’t perform that action at this time.
0 commit comments