Skip to content

Commit 7443288

Browse files
cjihrigaddaleax
authored andcommitted
report: remove empty string stream insertion
PR-URL: #25960 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent e0af205 commit 7443288

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/node_report_utils.cc

+2-5
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,8 @@ void WalkHandle(uv_handle_t* h, void* arg) {
144144
case UV_SIGNAL: {
145145
// SIGWINCH is used by libuv so always appears.
146146
// See http://docs.libuv.org/en/v1.x/signal.html
147-
data << "signum: " << handle->signal.signum
148-
#ifndef _WIN32
149-
<< " (" << node::signo_string(handle->signal.signum) << ")"
150-
#endif
151-
<< "";
147+
data << "signum: " << handle->signal.signum << " (" <<
148+
node::signo_string(handle->signal.signum) << ")";
152149
break;
153150
}
154151
default:

0 commit comments

Comments
 (0)