From b16d3df2d451e3e6bd52aef3fddf9cb2768eb33d Mon Sep 17 00:00:00 2001 From: "jwalden%mit.edu" Date: Fri, 21 Sep 2007 08:12:07 +0000 Subject: [PATCH] Fixing more bustage; apparently some compilers don't like default arguments unless they're in a declaration, not a definition. git-svn-id: svn://10.0.0.236/trunk@236428 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/tests/TestPipe.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mozilla/xpcom/tests/TestPipe.cpp b/mozilla/xpcom/tests/TestPipe.cpp index d47b7c86cc2..533211e571b 100644 --- a/mozilla/xpcom/tests/TestPipe.cpp +++ b/mozilla/xpcom/tests/TestPipe.cpp @@ -43,11 +43,11 @@ /** NS_NewPipe2 reimplemented, because it's not exported by XPCOM */ nsresult NS_NewPipe2(nsIAsyncInputStream** input, nsIAsyncOutputStream** output, - PRBool nonBlockingInput = PR_FALSE, - PRBool nonBlockingOutput = PR_FALSE, - size_t segmentSize = 0, - PRUint32 segmentCount = 0, - nsIMemory* segmentAlloc = nsnull) + PRBool nonBlockingInput, + PRBool nonBlockingOutput, + size_t segmentSize, + PRUint32 segmentCount, + nsIMemory* segmentAlloc) { nsCOMPtr pipe = do_CreateInstance("@mozilla.org/pipe;1"); if (!pipe)