Add a useless return statement to suppress a warning seen with some

versions of gcc (I'm seeing it with Apple's gcc 4.0.1).  I think the
reason we did not see this before was that the assert() macros in the
regex code were all no-ops till recently.
This commit is contained in:
Tom Lane 2007-10-22 01:02:22 +00:00
parent 1ea47dd8cb
commit f1c87830b5
1 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,7 @@
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $PostgreSQL: pgsql/src/backend/regex/regc_lex.c,v 1.5 2005/10/15 02:49:24 momjian Exp $
* $PostgreSQL: pgsql/src/backend/regex/regc_lex.c,v 1.6 2007/10/22 01:02:22 tgl Exp $
*
*/
@ -1071,6 +1071,7 @@ brenext(struct vars * v,
}
assert(NOTREACHED);
return 0;
}
/*