diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-06-20 04:34:31 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-06-20 04:34:31 +0000 |
commit | 9eb0afd0ad7284f705d1fe49a37a5a0fc5147bf7 (patch) | |
tree | bb83e132691b7a883ae4882e1f4379e75d0dba51 /src | |
parent | 454913c19ab94bc71d86017744b0a666e46aa42c (diff) | |
download | postgresql-9eb0afd0ad7284f705d1fe49a37a5a0fc5147bf7.tar.gz postgresql-9eb0afd0ad7284f705d1fe49a37a5a0fc5147bf7.zip |
Fixup for asserts.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h index f9b13fffc9b..c072643d52a 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.40 1998/06/15 18:39:51 momjian Exp $ + * $Id: c.h,v 1.41 1998/06/20 04:34:31 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -616,7 +616,7 @@ typedef struct Exception #ifndef USE_ASSERT_CHECKING #define Assert(condition) -#define AssertMacro(condition) true +#define AssertMacro(condition) (void)true #define AssertArg(condition) #define AssertState(condition) #else |