summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2014-10-18 08:56:59 +0000
committer smf- <smf-@users.noreply.github.com>2014-10-18 08:56:59 +0000
commitded298329caaadcde37e42a7972577c9687417f5 (patch)
treeb6f73f323efdda5106eb0d8089ff4a5eb23e8a98 /src/tools
parentcfb29e6f80325203b47cbcfff2274c6b794e5295 (diff)
fixed "make tools" with VS14 CTP4 (nw)
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/chdman.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/chdman.c b/src/tools/chdman.c
index 976a0b7ba53..a491226452b 100644
--- a/src/tools/chdman.c
+++ b/src/tools/chdman.c
@@ -2573,14 +2573,14 @@ static void do_extract_ld(parameters_t &params)
// read the hunk into the buffers
chd_error err = input_chd.read_hunk(framenum, NULL);
if (err != CHDERR_NONE)
- report_error(1, "Error reading hunk %"I64FMT"d from CHD file (%s): %s\n", framenum, params.find(OPTION_INPUT)->cstr(), chd_file::error_string(err));
+ report_error(1, "Error reading hunk %" I64FMT "d from CHD file (%s): %s\n", framenum, params.find(OPTION_INPUT)->cstr(), chd_file::error_string(err));
// write audio
for (int chnum = 0; chnum < channels; chnum++)
{
avi_error avierr = avi_append_sound_samples(output_file, chnum, avconfig.audio[chnum], actsamples, 0);
if (avierr != AVIERR_NONE)
- report_error(1, "Error writing samples for hunk %"I64FMT"d to file (%s): %s\n", framenum, output_file_str->cstr(), avi_error_string(avierr));
+ report_error(1, "Error writing samples for hunk %" I64FMT "d to file (%s): %s\n", framenum, output_file_str->cstr(), avi_error_string(avierr));
}
// write video
@@ -2588,7 +2588,7 @@ static void do_extract_ld(parameters_t &params)
{
avi_error avierr = avi_append_video_frame(output_file, fullbitmap);
if (avierr != AVIERR_NONE)
- report_error(1, "Error writing video for hunk %"I64FMT"d to file (%s): %s\n", framenum, output_file_str->cstr(), avi_error_string(avierr));
+ report_error(1, "Error writing video for hunk %" I64FMT "d to file (%s): %s\n", framenum, output_file_str->cstr(), avi_error_string(avierr));
}
}