More Windows fixes.
authorCarl Hetherington <cth@carlh.net>
Wed, 21 May 2014 23:31:08 +0000 (00:31 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 21 May 2014 23:31:08 +0000 (00:31 +0100)
src/lib/cross.cc

index 8ea477bf604d5d44c59eef7568d1156b9966deb5..70f643913abfa9cab7e22b20858fc7edc7648602 100644 (file)
@@ -190,13 +190,13 @@ run_ffprobe (boost::filesystem::path content, boost::filesystem::path out, share
        PROCESS_INFORMATION process_info;
        ZeroMemory (&process_info, sizeof (process_info));
        if (!CreateProcess (0, command, 0, 0, TRUE, CREATE_NO_WINDOW, 0, 0, &startup_info, &process_info)) {
-               LOG_ERROR (N_("ffprobe call failed (could not CreateProcess)"));
+               LOG_ERROR_NC (N_("ffprobe call failed (could not CreateProcess)"));
                return;
        }
 
        FILE* o = fopen_boost (out, "w");
        if (!o) {
-               LOG_ERROR (N_("ffprobe call failed (could not create output file)"));
+               LOG_ERROR_NC (N_("ffprobe call failed (could not create output file)"));
                return;
        }