From 818133afb0c499300069dcfe6f58b4e29ff3f54e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 22 May 2014 00:31:08 +0100 Subject: More Windows fixes. --- src/lib/cross.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/cross.cc b/src/lib/cross.cc index 8ea477bf6..70f643913 100644 --- a/src/lib/cross.cc +++ b/src/lib/cross.cc @@ -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; } -- cgit v1.2.3