Skip to content

Commit 06cc697

Browse files
committed
process: fix cpp format issue
1 parent 95968df commit 06cc697

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/node_process_methods.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ static void Cwd(const FunctionCallbackInfo<Value>& args) {
168168
if (err == UV_ENOENT) {
169169
// If err == UV_ENOENT it is necessary to notice the user
170170
// that the current working dir was likely removed.
171-
err_msg = err_msg +
171+
err_msg =
172+
err_msg +
172173
std::string(", the current working directory was likely removed ") +
173174
std::string("without changing the working directory");
174175
}

0 commit comments

Comments
 (0)