Skip to content

Commit fac7ba8

Browse files
mkrasnitskizznop
authored andcommitted
Fix incorrect paths in EFI Resolver
1 parent 3e7c1b6 commit fac7ba8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/efi_resolver/src/Resolver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ static string GetBundledEfiPath()
4444
{
4545
string path = GetBundledPluginDirectory();
4646
#if defined(_WIN32)
47-
return path + "..\\types\\efi.c";
47+
return path + "\\..\\types\\efi.c";
4848
#elif defined(__APPLE__)
4949
return path + "/../../Resources/types/efi.c";
5050
#else
51-
return path + "../types/efi.c";
51+
return path + "/../types/efi.c";
5252
#endif
5353
}
5454

0 commit comments

Comments
 (0)