diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/cross.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |
