aboutsummaryrefslogtreecommitdiff
path: root/butl/filesystem
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-07-30 16:36:53 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-07-30 16:36:53 +0200
commite37cf91f24fc409fa0aa84500245f57c685fc8ea (patch)
tree2c0730f6c4226b054cb5eaf640fd0bb704536dae /butl/filesystem
parent6597c9b777b608a96974b4a7a8c15234b05ffdd8 (diff)
Implement support for Windows path actualization
Diffstat (limited to 'butl/filesystem')
-rw-r--r--butl/filesystem4
1 files changed, 2 insertions, 2 deletions
diff --git a/butl/filesystem b/butl/filesystem
index 566f398..118fa01 100644
--- a/butl/filesystem
+++ b/butl/filesystem
@@ -338,9 +338,9 @@ namespace butl
dir_entry e_;
#ifndef _WIN32
- DIR* h_ {nullptr};
+ DIR* h_ = nullptr;
#else
- intptr_t h_ {-1};
+ intptr_t h_ = -1;
#endif
};