Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit8476f05

Browse files
committed
Suppress pointer-signedness warning.
1 parentbcba09e commit8476f05

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/0416:08:36 tgl Exp $
15+
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.546 2009/08/0419: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((unsignedchar*)tginfo->tgargs,
11115+
&lentgargs);
1111511116
p=tgargs;
1111611117
for (findx=0;findx<tginfo->tgnargs;findx++)
1111711118
{

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp