From e160fcd69642588ede2ef03fdb3cbca319253c2d Mon Sep 17 00:00:00 2001 From: "Thomas G. Lockhart" Date: Tue, 6 Nov 2001 16:27:31 +0000 Subject: [PATCH] Use PostgreSQL's standard declaration for a 32-bit integer to define the cash data type. --- src/include/utils/cash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/utils/cash.h b/src/include/utils/cash.h index 034a79ac54..02b6c6424d 100644 --- a/src/include/utils/cash.h +++ b/src/include/utils/cash.h @@ -10,7 +10,7 @@ #define CASH_H /* if we store this as 4 bytes, we better make it int, not long, bjm */ -typedef signed int Cash; +typedef int32 Cash; extern Datum cash_in(PG_FUNCTION_ARGS); extern Datum cash_out(PG_FUNCTION_ARGS); -- 2.40.0