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

Commitd2e71ff

Browse files
committed
Silence compiler warning in assertion-enabled builds.
With -Wtype-limits, gcc correctly points out that size_t can never be < 0.Backpatch to 9.3 and 9.2. It's been like this forever, but in <= 9.1 you gota lot other warnings with -Wtype-limits anyway (at least with my version ofgcc).Andres Freund
1 parentcce5d85 commitd2e71ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/pl/plpython/plpy_procedure.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -494,8 +494,8 @@ PLy_procedure_munge_source(const char *name, const char *src)
494494
char*mrc,
495495
*mp;
496496
constchar*sp;
497-
size_tmlen,
498-
plen;
497+
size_tmlen;
498+
intplen;
499499

500500
/*
501501
* room for function source and the def statement

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp