From efcf3343947e58f5bf970a6d336db26acd067ec3 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 git-svn-id: svn://10.0.0.236/trunk@119334 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/editor/libeditor/html/nsHTMLEditorLog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/editor/libeditor/html/nsHTMLEditorLog.cpp b/mozilla/editor/libeditor/html/nsHTMLEditorLog.cpp index 80837258572..c344d8b8887 100644 --- a/mozilla/editor/libeditor/html/nsHTMLEditorLog.cpp +++ b/mozilla/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;