fix for bug 366725 missed a semicolon and broke msvc 2005 express for some people.

This commit is contained in:
sayrer%gmail.com 2007-03-08 08:25:28 +00:00
parent 2d7d055662
commit 21404816e2

View File

@ -6048,7 +6048,7 @@ interrupt:
for (siter = fp->spbase; siter < sp; siter++) {
str = js_ValueToString(cx, *siter);
if (!str)
fputs("<null>", tracefp)
fputs("<null>", tracefp);
else
js_FileEscapedString(tracefp, str, 0);
fputc(' ', tracefp);