diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-05-22 00:31:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-05-22 00:31:08 +0100 |
| commit | 818133afb0c499300069dcfe6f58b4e29ff3f54e (patch) | |
| tree | 0ad135e61b97bceae12f058dfe01be672e8e37f1 /src | |
| parent | 5ac8a0de9dee4772d55d9c821027738c6bbb4853 (diff) | |
More Windows fixes.
Diffstat (limited to 'src')
| -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; } |
