Commit fd12c8f8 authored by Bruce Momjian's avatar Bruce Momjian

Fixed Assert check where ! should be !=.

parent 221d7296
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * 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: * NOTES:
* *
...@@ -378,7 +378,7 @@ AssertLruRoom() ...@@ -378,7 +378,7 @@ AssertLruRoom()
/* We supposedly are using more vfds than we want to be. First /* 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 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); LruDelete(VfdCache[0].lruMoreRecently);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment