Fri Dec 10 23:49:20 PST 2004
- Previous message: [Slony1-commit] By cbbrowne: Fix to table of contents - SET MOVE (TABLE|SEQUENCE) was
- Next message: [Slony1-commit] By cbbrowne: Add in FAQ to the admin guide
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
Fix cast to pointer from integer of different size on 64bit platforms
Modified Files:
--------------
slony1-engine/src/slon:
confoptions.c (r1.7 -> r1.8)
-------------- next part --------------
Index: confoptions.c
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/slon/confoptions.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -Lsrc/slon/confoptions.c -Lsrc/slon/confoptions.c -u -w -r1.7 -r1.8
--- src/slon/confoptions.c
+++ src/slon/confoptions.c
@@ -374,7 +374,7 @@
case SLON_C_INT:
{
struct config_int *conf = (struct config_int *) record;
- return (void *)*conf->variable;
+ return (void *)conf->variable;
break;
}
case SLON_C_REAL:
- Previous message: [Slony1-commit] By cbbrowne: Fix to table of contents - SET MOVE (TABLE|SEQUENCE) was
- Next message: [Slony1-commit] By cbbrowne: Add in FAQ to the admin guide
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list