From c879697b12e08d51852787a56975b19d30af2c13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Pierre=20Andr=C3=A9?= Date: Wed, 23 Mar 2011 09:10:10 +0100 Subject: [PATCH] Fixed type of argument (same value) A boolean argument had been replaced by a tri-state one, but the change was forgotten in one instance. No visible effect, the value is the same. --- libntfs-3g/attrib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libntfs-3g/attrib.c b/libntfs-3g/attrib.c index b240e7a4..e6f614f0 100644 --- a/libntfs-3g/attrib.c +++ b/libntfs-3g/attrib.c @@ -6494,7 +6494,7 @@ static int stuff_hole(ntfs_attr *na, const s64 pos) if (!ret && ((na->initialized_size + end_size) < pos) && ntfs_non_resident_attr_expand(na, - pos - end_size, TRUE)) + pos - end_size, HOLES_OK)) ret = -1; else na->initialized_size