ntfs_fuse_write: fix compiler warning on logging format string

master
szaka 2008-11-13 02:21:58 +00:00
parent e8b6fe03f6
commit 8b7954e4ab
1 changed files with 1 additions and 1 deletions

View File

@ -730,7 +730,7 @@ static int ntfs_fuse_write(const char *org_path, const char *buf, size_t size,
if (0 <= ret && ret < (s64)size)
ntfs_log_perror("ntfs_attr_pwrite partial write to '%s'"
" (%lld: %lld <> %lld)", path, (long long)offset,
(long long)size, ret);
(long long)size, (long long)ret);
if (ret <= 0) {
res = -errno;
goto exit;