From 647d06a4346b1fc3e0a1c0507c28303a3d08d755 Mon Sep 17 00:00:00 2001 From: szaka Date: Wed, 18 Mar 2009 00:53:21 +0000 Subject: [PATCH] ntfs_attr_pwrite: fix wrong variable type --- libntfs-3g/attrib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libntfs-3g/attrib.c b/libntfs-3g/attrib.c index 5ce04214..ecfb3b8a 100644 --- a/libntfs-3g/attrib.c +++ b/libntfs-3g/attrib.c @@ -1162,7 +1162,8 @@ s64 ntfs_attr_pwrite(ntfs_attr *na, const s64 pos, s64 count, const void *b) ntfs_volume *vol; ntfs_attr_search_ctx *ctx = NULL; runlist_element *rl; - s64 eo, hole_end; + s64 hole_end; + int eo; struct { unsigned int undo_initialized_size : 1; unsigned int undo_data_size : 1;