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

Commit22b96f8

Browse files
committed
Avoid C99-ism in pre-v12 branches.
Per buildfarm (I need to figure out why my own compiler did notwhine about this).
1 parentf451029 commit22b96f8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎src/backend/catalog/indexing.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,9 @@ CatalogTupleCheckConstraints(Relation heapRel, HeapTuple tup)
187187
{
188188
TupleDesctupdesc=RelationGetDescr(heapRel);
189189
bits8*bp=tup->t_data->t_bits;
190+
intattnum;
190191

191-
for (intattnum=0;attnum<tupdesc->natts;attnum++)
192+
for (attnum=0;attnum<tupdesc->natts;attnum++)
192193
{
193194
Form_pg_attributethisatt=TupleDescAttr(tupdesc,attnum);
194195

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp