We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e01f9c5 commit daa0308Copy full SHA for daa0308
1 file changed
src/base/paths.cc
@@ -33,21 +33,21 @@
33
#include <algorithm>
34
#endif
35
36
-#include "paths.hh"
37
-
38
#include <unistd.h>
39
40
#include "config.h"
41
#include "fmt/format.h"
+#include "lnav_log.hh"
42
#include "opt_util.hh"
+#include "paths.hh"
43
44
namespace lnav::paths {
45
46
#ifdef __CYGWIN__
47
std::string
48
windows_to_unix_file_path(const std::string& input)
49
{
50
- static const auto CYGDRIVE = std::filesystem::path("cygdrive");
+ static const auto CYGDRIVE = std::filesystem::path("/cygdrive");
51
52
std::string file_path;
53
file_path.assign(input);
0 commit comments