Re: [HACKERS] miniscule compiler barf in pg_ctl.c

2004-07-21 Thread Tom Lane
"Dann Corbit" <[EMAIL PROTECTED]> writes: > default: > ; /* << Just a semicolon added here */ >/* assert(false); */ > } Personally I prefer writing default: break; Switch branches that don't have break or return at the end are trouble wait

[HACKERS] miniscule compiler barf in pg_ctl.c

2004-07-21 Thread Dann Corbit
Title: Message I have seen this before with other compilers.  The latest MINGW GCC compiler does not like a goto label with no statements following. pg_ctl.c: In function `pgwin32_ServiceMain':pg_ctl.c:991: error: label at end of compound statementmake[3]: *** [pg_ctl.o] Error 1make[3]: Leav