r=mccabe make output from xpcshell's new 'dump' method go to the same place as output of 'print': stdout rather than stderr

This commit is contained in:
jband%netscape.com 1999-11-02 23:31:09 +00:00
parent 4033a6f681
commit 57657db2fc

View File

@ -199,7 +199,7 @@ Dump(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
if (*c == '\r')
*c = '\n';
#endif
fputs(bytes, stderr);
fputs(bytes, gOutFile);
nsAllocator::Free(bytes);
return JS_TRUE;
}