1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-18 17:42:25 +03:00

uint -> uint32, portability.

This commit is contained in:
Bruce Momjian
2002-06-22 04:08:07 +00:00
parent 90edb265e3
commit a8a1f15877
3 changed files with 24 additions and 5 deletions

View File

@ -66,10 +66,10 @@ typedef struct
typedef struct
{
/* Number of times we've been called before */
uint call_cntr;
uint32 call_cntr;
/* Maximum number of calls */
uint max_calls;
uint32 max_calls;
/* pointer to result slot */
TupleTableSlot *slot;