Tue Aug 1 23:23:46 PDT 2006
- Previous message: [Slony1-commit] By cbbrowne: Add a regression test that sets up a "master" table and
- Next message: [Slony1-commit] By xfade: Add scan_for_statements to scanner.h, so slon can use it.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message: ----------- Silence GCC warnings about missing braces around initializers. Modified Files: -------------- slony1-engine/src/slon: confoptions.h (r1.28 -> r1.29) -------------- next part -------------- Index: confoptions.h =================================================================== RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/slon/confoptions.h,v retrieving revision 1.28 retrieving revision 1.29 diff -Lsrc/slon/confoptions.h -Lsrc/slon/confoptions.h -u -w -r1.28 -r1.29 --- src/slon/confoptions.h +++ src/slon/confoptions.h @@ -245,7 +245,7 @@ 1048576, /* min val */ 1073741824 /* max val */ }, - {0} + {{0}} }; static struct config_bool ConfigureNamesBool[] = @@ -271,7 +271,7 @@ true }, - {0} + {{0}} }; static struct config_real ConfigureNamesReal[] = @@ -288,7 +288,7 @@ 0.0, /* min_value */ 1.0 /* max value */ }, - {0} + {{0}} }; static struct config_string ConfigureNamesString[] = @@ -410,7 +410,7 @@ "slon" }, #endif - {0} + {{0}} }; #endif /*
- Previous message: [Slony1-commit] By cbbrowne: Add a regression test that sets up a "master" table and
- Next message: [Slony1-commit] By xfade: Add scan_for_statements to scanner.h, so slon can use it.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list