Skip to content

Commit 752b571

Browse files
committed
process: format cpp
1 parent 1030646 commit 752b571

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/node_process_methods.cc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,9 @@ 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 =
172-
err_msg +
173-
", the current working directory was likely removed " +
174-
"without changing the working directory";
171+
err_msg = err_msg +
172+
", the current working directory was likely removed " +
173+
"without changing the working directory";
175174
}
176175
return env->ThrowUVException(err, "uv_cwd", err_msg.c_str());
177176
}

0 commit comments

Comments
 (0)