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)