aboutsummaryrefslogtreecommitdiffhomepage
path: root/env.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 /env.cpp
parent7d63900fb8167d344a58c0c7e541166974b0c672 (diff)
Fix indentation of switch statements
Diffstat (limited to 'env.cpp')
-rw-r--r--env.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/env.cpp b/env.cpp
index 3c12da34..035fee4e 100644
--- a/env.cpp
+++ b/env.cpp
@@ -393,21 +393,21 @@ static void universal_callback(fish_message_type_t type,
switch (type)
{
- case SET:
- case SET_EXPORT:
- {
- str=L"SET";
- break;
- }
+ case SET:
+ case SET_EXPORT:
+ {
+ str=L"SET";
+ break;
+ }
- case ERASE:
- {
- str=L"ERASE";
- break;
- }
+ case ERASE:
+ {
+ str=L"ERASE";
+ break;
+ }
- default:
- break;
+ default:
+ break;
}
if (str)