Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitfd12c8f

Browse files
committed
Fixed Assert check where ! should be !=.
1 parent221d729 commitfd12c8f

File tree

1 file changed

+2
-2
lines changed
  • src/backend/storage/file

1 file changed

+2
-2
lines changed

‎src/backend/storage/file/fd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $Id: fd.c,v 1.11 1996/12/27 22:57:51 bryanh Exp $
9+
* $Id: fd.c,v 1.12 1996/12/28 22:44:14 momjian Exp $
1010
*
1111
* NOTES:
1212
*
@@ -378,7 +378,7 @@ AssertLruRoom()
378378
/* We supposedly are using more vfds than we want to be. First
379379
assert that there is at least one used vfd in the ring.
380380
*/
381-
Assert(VfdCache[0].lruMoreRecently !0);
381+
Assert(VfdCache[0].lruMoreRecently!=0);
382382
LruDelete(VfdCache[0].lruMoreRecently);
383383
}
384384
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp