From a8a1f158775cb0f83707aa4211c02f4780eed07f Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 22 Jun 2002 04:08:07 +0000 Subject: uint -> uint32, portability. --- src/include/funcapi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/include/funcapi.h b/src/include/funcapi.h index 36a0cc47bdc..351a7a420d7 100644 --- a/src/include/funcapi.h +++ b/src/include/funcapi.h @@ -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; -- cgit v1.2.3