summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/cross.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/cross.cc b/src/lib/cross.cc
index 47b97baec..47f07cf9d 100644
--- a/src/lib/cross.cc
+++ b/src/lib/cross.cc
@@ -236,14 +236,13 @@ boost::filesystem::path
openssl_path ()
{
#ifdef DCPOMATIC_WINDOWS
-
wchar_t dir[512];
GetModuleFileName (GetModuleHandle (0), dir, sizeof (dir));
PathRemoveFileSpec (dir);
boost::filesystem::path path = dir;
path /= "openssl.exe";
- return path
+ return path;
#else
/* We assume that it's on the path for Linux and OS X */
return "openssl";