Update of /cvsroot/pypgsql/pypgsql
In directory usw-pr-cvs1:/tmp/cvs-serv4657
Modified Files:
pgint8object.c pgint8object.h
Log Message:
02OCT2002 gh LONG_LONG_MAX => LLONG_MAX
Index: pgint8object.c
===================================================================
RCS file: /cvsroot/pypgsql/pypgsql/pgint8object.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** pgint8object.c 2 Oct 2002 04:08:38 -0000 1.13
--- pgint8object.c 2 Oct 2002 11:32:07 -0000 1.14
***************
*** 40,43 ****
--- 40,44 ----
| Date Ini Description |
| --------- --- ------------------------------------------------------- |
+ | 02OCT2002 gh LONG_LONG_MAX => LLONG_MAX |
| 01OCT2002 gh HAVE_LONG_LONG => HAVE_LONG_LONG_SUPPORT |
| 16SEP2002 gh Reflect the change from windows/ to port/. |
***************
*** 89,93 ****
LONG_LONG PgInt8_GetMax(void)
{
! return LONG_LONG_MAX;
}
--- 90,94 ----
LONG_LONG PgInt8_GetMax(void)
{
! return LLONG_MAX;
}
Index: pgint8object.h
===================================================================
RCS file: /cvsroot/pypgsql/pypgsql/pgint8object.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** pgint8object.h 2 Oct 2002 04:08:38 -0000 1.6
--- pgint8object.h 2 Oct 2002 11:32:07 -0000 1.7
***************
*** 32,39 ****
#endif
- #if ! defined(LONG_LONG_MAX)
- #define LONG_LONG_MAX 0x7fffffffffffffffLL
- #endif
-
typedef struct {
PyObject_HEAD
--- 32,35 ----
|