From 4dda68c467fe1e759e0d67e4ec844ac0130e6127 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Tue, 22 Jul 2008 23:51:45 +0000 Subject: [PATCH] Fix win32 compilation --- source/dir.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dir.cpp b/source/dir.cpp index 612d017..212200d 100644 --- a/source/dir.cpp +++ b/source/dir.cpp @@ -46,7 +46,7 @@ void mkpath(const Path &path, int mode) { p/=*i; #ifdef WIN32 - if(p.size()==1 && is_windows_drive(*i)) + if(p.size()==1 && p.is_absolute()) continue; #endif struct stat st; -- 2.43.0