Skip to content

Commit 8476f05

Browse files
committed
Suppress pointer-signedness warning.
1 parent bcba09e commit 8476f05

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/bin/pg_dump/pg_dump.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* by PostgreSQL
1313
*
1414
* IDENTIFICATION
15-
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.545 2009/08/04 16:08:36 tgl Exp $
15+
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.546 2009/08/04 19:46:51 tgl Exp $
1616
*
1717
*-------------------------------------------------------------------------
1818
*/
@@ -11111,7 +11111,8 @@ dumpTrigger(Archive *fout, TriggerInfo *tginfo)
1111111111
appendPQExpBuffer(query, "EXECUTE PROCEDURE %s(",
1111211112
fmtId(tginfo->tgfname));
1111311113

11114-
tgargs = (char *) PQunescapeBytea(tginfo->tgargs, &lentgargs);
11114+
tgargs = (char *) PQunescapeBytea((unsigned char *) tginfo->tgargs,
11115+
&lentgargs);
1111511116
p = tgargs;
1111611117
for (findx = 0; findx < tginfo->tgnargs; findx++)
1111711118
{

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy