Skip to content

Commit 95968df

Browse files
committed
process: fix cpp format issue
1 parent 24218bf commit 95968df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_process_methods.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ static void Cwd(const FunctionCallbackInfo<Value>& args) {
165165
if (err) {
166166
std::string err_msg =
167167
std::string("process.cwd failed with error ") + uv_strerror(err);
168-
if (err == UV_ENOENT) {
168+
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.
171171
err_msg = err_msg +

0 commit comments

Comments
 (0)