summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-10-09 11:31:56 +0100
committerCarl Hetherington <cth@carlh.net>2013-10-09 11:31:56 +0100
commit7c4b1d53a4ce8cf43fb36dfd84c45b8d274f4faa (patch)
tree719235b9024a7760e5216e2bf52bdf1d4073efb3
parent7bbcb5240103b4ab19a7b35cd888dd25cf56aad1 (diff)
Windows typo.
-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";