Commit 11a3cb81 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Kevin Wolf
Browse files

raw-posix: raw_pwrite comment fixup



Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
parent 2dd791b6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -463,7 +463,7 @@ static int raw_pwrite(BlockDriverState *bs, int64_t offset,
                count -= ret;
                sum += ret;
            }
            /* here, count < 512 because (count & ~sector_mask) == 0 */
            /* here, count < sector_size because (count & ~sector_mask) == 0 */
            if (count) {
                ret = raw_pread_aligned(bs, offset, s->aligned_buf,
                                     bs->buffer_alignment);