From fd12c8f85ea3b6af50ad4d68d4097eca7fe035f2 Mon Sep 17 00:00:00 2001 From: Bruce Momjian <bruce@momjian.us> Date: Sat, 28 Dec 1996 22:44:14 +0000 Subject: [PATCH] Fixed Assert check where ! should be !=. --- src/backend/storage/file/fd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 45c1dd7cff..ee6e8c4d9c 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -6,7 +6,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Id: fd.c,v 1.11 1996/12/27 22:57:51 bryanh Exp $ + * $Id: fd.c,v 1.12 1996/12/28 22:44:14 momjian Exp $ * * NOTES: * @@ -378,7 +378,7 @@ AssertLruRoom() /* We supposedly are using more vfds than we want to be. First assert that there is at least one used vfd in the ring. */ - Assert(VfdCache[0].lruMoreRecently ! 0); + Assert(VfdCache[0].lruMoreRecently != 0); LruDelete(VfdCache[0].lruMoreRecently); } }