From 5839d46b7ab43f177211de061903e8d9642f01fb Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Mon, 8 May 2017 21:57:45 -0700 Subject: [PATCH] tst: memfs-dotnet: fix stream_create_overwrite_test --- tst/memfs-dotnet/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tst/memfs-dotnet/Program.cs b/tst/memfs-dotnet/Program.cs index 036906a2..24aa67b7 100644 --- a/tst/memfs-dotnet/Program.cs +++ b/tst/memfs-dotnet/Program.cs @@ -410,7 +410,7 @@ namespace memfs FileNode StreamNode = FileNodeMap.Get(StreamFileName); if (null == StreamNode) continue; /* should not happen */ - if (0 == FileNode.OpenCount) + if (0 == StreamNode.OpenCount) FileNodeMap.Remove(StreamNode); }