Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs/class
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2010-06-18 19:46:49 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2010-06-18 19:46:49 +0400
commitd30ea6e9ba6a6b66655060f1ad3a2d76626f24e5 (patch)
tree08ca3ff68157411dd6d418b681fc236445111c69 /mcs/class
parent9db915cfa56ca726f701a0bc67d3ec96948cba74 (diff)
Fix the build
svn path=/branches/mono-2-6/mcs/; revision=159141
Diffstat (limited to 'mcs/class')
-rw-r--r--mcs/class/corlib/System.IO/FileStream.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/corlib/System.IO/FileStream.cs b/mcs/class/corlib/System.IO/FileStream.cs
index 20ac147acec..2b2e56429ce 100644
--- a/mcs/class/corlib/System.IO/FileStream.cs
+++ b/mcs/class/corlib/System.IO/FileStream.cs
@@ -145,7 +145,7 @@ namespace System.IO
}
public FileStream (string path, FileMode mode, FileAccess access, FileShare share, int bufferSize, bool useAsync)
- : this (path, mode, access, share, bufferSize, useAsync ? FileOptions.Asynchronous : FileOptions.None)
+ : this (path, mode, access, share, bufferSize, false, useAsync ? FileOptions.Asynchronous : FileOptions.None)
{
}