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

Commit85df5db

Browse files
committed
Fix compiler warning seen on 64-bit machine.
1 parent8daeb5d commit85df5db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/backend/access/spgist/spgutils.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ SpGistPageAddNewItem(SpGistState *state, Page page, Item item, Size size,
832832
}
833833
else
834834
elog(PANIC,"failed to add item of size %u to SPGiST index page",
835-
size);
835+
(int)size);
836836

837837
returnoffnum;
838838
}
@@ -844,7 +844,7 @@ SpGistPageAddNewItem(SpGistState *state, Page page, Item item, Size size,
844844

845845
if (offnum==InvalidOffsetNumber&& !errorOK)
846846
elog(ERROR,"failed to add item of size %u to SPGiST index page",
847-
size);
847+
(int)size);
848848

849849
returnoffnum;
850850
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp