aboutsummaryrefslogtreecommitdiffhomepage
path: root/path.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-11-19 00:31:03 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-11-19 00:31:03 -0800
commit26678682ca90b68f19b993e259bf43384c0a18ec (patch)
treeaf119f1845d12657d42e8ba57f90350c9f89c57f /path.cpp
parent7d63900fb8167d344a58c0c7e541166974b0c672 (diff)
Fix indentation of switch statements
Diffstat (limited to 'path.cpp')
-rw-r--r--path.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/path.cpp b/path.cpp
index bea3fe3d..ef53b1f9 100644
--- a/path.cpp
+++ b/path.cpp
@@ -110,18 +110,18 @@ static bool path_get_path_core(const wcstring &cmd, wcstring *out_path, const en
{
switch (errno)
{
- case ENOENT:
- case ENAMETOOLONG:
- case EACCES:
- case ENOTDIR:
- break;
- default:
- {
- debug(1,
- MISSING_COMMAND_ERR_MSG,
- nxt_path.c_str());
- wperror(L"access");
- }
+ case ENOENT:
+ case ENAMETOOLONG:
+ case EACCES:
+ case ENOTDIR:
+ break;
+ default:
+ {
+ debug(1,
+ MISSING_COMMAND_ERR_MSG,
+ nxt_path.c_str());
+ wperror(L"access");
+ }
}
}
}