Windows typo.
authorCarl Hetherington <cth@carlh.net>
Wed, 9 Oct 2013 10:31:56 +0000 (11:31 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 9 Oct 2013 10:31:56 +0000 (11:31 +0100)
src/lib/cross.cc

index 47b97baecc0816b96db472ea26864e355a4c5780..47f07cf9d3edcf2b16c287dbff2a508aa9f11c46 100644 (file)
@@ -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";