diff options
author | Tom Lane | 2003-07-24 17:52:50 +0000 |
---|---|---|
committer | Tom Lane | 2003-07-24 17:52:50 +0000 |
commit | 8fd5b3ed67d91937516d855bd6f225052aa88f2a (patch) | |
tree | 5f14c30cb79692b6d35e612ed97feb79f62a155d /contrib/tsearch2/common.c | |
parent | f0c5384d4a21d85198f86281f61d5754bfdca7a5 (diff) |
Error message editing in contrib (mostly by Joe Conway --- thanks Joe!)
Diffstat (limited to 'contrib/tsearch2/common.c')
-rw-r--r-- | contrib/tsearch2/common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/tsearch2/common.c b/contrib/tsearch2/common.c index acce0f569f..917dced87f 100644 --- a/contrib/tsearch2/common.c +++ b/contrib/tsearch2/common.c @@ -68,7 +68,8 @@ ts_error(int state, const char *format, ...) { } va_end(args); - elog(state,buf); + /* ?? internal error ?? */ + elog(state, "%s", buf); pfree(buf); } |