summaryrefslogtreecommitdiff
path: root/plugins/efi_resolver/src/Resolver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/efi_resolver/src/Resolver.cpp')
-rw-r--r--plugins/efi_resolver/src/Resolver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/efi_resolver/src/Resolver.cpp b/plugins/efi_resolver/src/Resolver.cpp
index 36fa190b..5796b0e0 100644
--- a/plugins/efi_resolver/src/Resolver.cpp
+++ b/plugins/efi_resolver/src/Resolver.cpp
@@ -44,11 +44,11 @@ static string GetBundledEfiPath()
{
string path = GetBundledPluginDirectory();
#if defined(_WIN32)
- return path + "..\\types\\efi.c";
+ return path + "\\..\\types\\efi.c";
#elif defined(__APPLE__)
return path + "/../../Resources/types/efi.c";
#else
- return path + "../types/efi.c";
+ return path + "/../types/efi.c";
#endif
}