FS-11521: [mod_av] Test program regression fix.

This commit is contained in:
Andrey Volk 2018-11-14 19:51:33 +04:00 committed by Andrey Volk
parent 522d871f65
commit 9e0579011d
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ FST_CORE_BEGIN("conf")
fst_requires(switch_test_flag(&fh, SWITCH_FILE_OPEN));
status = switch_core_file_write(&fh, data, &len);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "status: %d len: %d\n", status, len);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "status: %d len: %d\n", status, (int)len);
fst_check(status == SWITCH_STATUS_SUCCESS);
// fst_requires(len == SAMPLES);
@ -116,7 +116,7 @@ FST_CORE_BEGIN("conf")
fst_requires(switch_test_flag(&fh, SWITCH_FILE_OPEN));
status = switch_core_file_write(&fh, data, &len);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "status: %d len: %d\n", status, len);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "status: %d len: %d\n", status, (int)len);
fst_check(status == SWITCH_STATUS_SUCCESS);
// fst_requires(len == SAMPLES);