1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

ASSERT fixes.

This commit is contained in:
Bruce Momjian
1998-04-06 17:27:54 +00:00
parent d8077ab007
commit 2ffd727531
7 changed files with 31 additions and 31 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/lib/Attic/fstack.c,v 1.6 1997/09/08 02:22:57 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/lib/Attic/fstack.c,v 1.7 1998/04/06 17:27:11 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -84,7 +84,7 @@ FixedStackPush(FixedStack stack, Pointer pointer)
stack->top = item;
}
#ifndef NO_ASSERT_CHECKING
#ifdef USE_ASSERT_CHECKING
/*
* FixedStackContains --
* True iff ordered stack contains given element.