mc_util_write_backup_content(): fixed arguments in fwrite() call.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2010-05-27 22:04:44 +04:00
parent df6bbf38eb
commit c48763fa9d
1 changed files with 1 additions and 1 deletions

View File

@ -1240,7 +1240,7 @@ mc_util_write_backup_content (const char *from_file_name, const char *to_file_na
return FALSE;
}
if (fwrite ((const void *) contents, length, 1, backup_fd) != length)
if (fwrite ((const void *) contents, 1, length, backup_fd) != length)
ret1 = FALSE;
{
int ret2;