From bbe508afd49008d0ffbd6d28ffb9fc52bc967cd3 Mon Sep 17 00:00:00 2001 From: "bienvenu%netscape.com" Date: Thu, 18 Apr 2002 23:14:30 +0000 Subject: [PATCH] make this file build (at least on windows) after nsIFileOutputStream changes r/sr = jkeiser --- editor/libeditor/html/nsHTMLEditorLog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/libeditor/html/nsHTMLEditorLog.cpp b/editor/libeditor/html/nsHTMLEditorLog.cpp index 808372585725..c344d8b88872 100644 --- a/editor/libeditor/html/nsHTMLEditorLog.cpp +++ b/editor/libeditor/html/nsHTMLEditorLog.cpp @@ -822,7 +822,7 @@ nsHTMLEditorLog::StartLogging(nsIFile *aLogFile) mFileStream = do_CreateInstance(NS_LOCALFILEOUTPUTSTREAM_CONTRACTID, &result); if (NS_FAILED(result)) return result; - result = mFileStream->Init(aLogFile, -1, -1); + result = mFileStream->Init(aLogFile, -1, -1, 0); if (NS_FAILED(result)) { mFileStream = nsnull;