aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/wutil.cpp
diff options
context:
space:
mode:
authorGravatar Kurtis Rader <krader@skepticism.us>2016-05-27 14:41:16 -0700
committerGravatar Kurtis Rader <krader@skepticism.us>2016-05-27 14:44:30 -0700
commit9ad3488b5d076729b39bd3f91abda4fd10bea21c (patch)
treefd1f5b8fb4b723a80c81b0772a68b63876d25b9a /src/wutil.cpp
parent8f420b9272e526097a73ad10ce74ce3edbb67b9e (diff)
fix some style bogosities that crept in
Diffstat (limited to 'src/wutil.cpp')
-rw-r--r--src/wutil.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wutil.cpp b/src/wutil.cpp
index 9f975fab..3b0bdb2e 100644
--- a/src/wutil.cpp
+++ b/src/wutil.cpp
@@ -344,9 +344,9 @@ wchar_t *wrealpath(const wcstring &pathname, wchar_t *resolved_path) {
}
#if __APPLE__ && __DARWIN_C_LEVEL < 200809L
- // OS X Snow Leopard is broken with respect to the dynamically allocated buffer returned by
- // realpath(). It's not dynamically allocated so attempting to free that buffer triggers a
- // malloc/free error. Thus we don't attempt the free in this case.
+// OS X Snow Leopard is broken with respect to the dynamically allocated buffer returned by
+// realpath(). It's not dynamically allocated so attempting to free that buffer triggers a
+// malloc/free error. Thus we don't attempt the free in this case.
#else
free(narrow_res);
#endif