diff options
author | Magnus Hagander <magnus@hagander.net> | 2010-01-17 12:11:25 +0000 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2010-01-17 12:11:25 +0000 |
commit | 94fa8301f7f3af5bb04687a5e792e97dcf6f1a0d (patch) | |
tree | f82c2909b0c963526107340cacee7312a10611a3 | |
parent | 0ae19c11f4211a043ee578ee0419d28db9376d29 (diff) | |
download | postgresql-94fa8301f7f3af5bb04687a5e792e97dcf6f1a0d.tar.gz postgresql-94fa8301f7f3af5bb04687a5e792e97dcf6f1a0d.zip |
Silence compiler warning, noted by Stefan Kaltenbrunner
-rw-r--r-- | contrib/xml2/xpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/xml2/xpath.c b/contrib/xml2/xpath.c index a003dd00c82..b1a4e9ac9d6 100644 --- a/contrib/xml2/xpath.c +++ b/contrib/xml2/xpath.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/xml2/xpath.c,v 1.24 2009/12/29 17:40:59 heikki Exp $ + * $PostgreSQL: pgsql/contrib/xml2/xpath.c,v 1.25 2010/01/17 12:11:25 mha Exp $ * * Parser interface for DOM-based parser (libxml) rather than * stream-based SAX-type parser @@ -129,7 +129,7 @@ elog_error(int level, char *explain, int force) if (pgxml_errorMsg == NULL) { ereport(level, (errcode(ERRCODE_EXTERNAL_ROUTINE_EXCEPTION), - errmsg(explain))); + errmsg("%s", explain))); } else { |