aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/wutil.cpp
diff options
context:
space:
mode:
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