Skip to content

Commit

Permalink
Bug 1401299 - Removing leftover putc(stderr, ...) from ParseNode;r=nbp
Browse files Browse the repository at this point in the history
MozReview-Commit-ID: 5F78rFhxWYE
  • Loading branch information
David Teller committed Sep 19, 2017
1 parent 2fb6b4e commit 50cdeab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/frontend/ParseNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ DumpName(GenericPrinter& out, const CharT* s, size_t len)
for (size_t i = 0; i < len; i++) {
char16_t c = s[i];
if (c > 32 && c < 127)
fputc(c, stderr);
out.putChar(c);
else if (c <= 255)
out.printf("\\x%02x", unsigned(c));
else
Expand Down

0 comments on commit 50cdeab

Please sign in to comment.