From 1aa9882810452d6682cdca95a176ed92cddd587f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Pierre=20Andr=C3=A9?= Date: Thu, 12 Nov 2015 15:39:20 +0100 Subject: [PATCH] Silenced a compiler warning (cosmetic) An argument to ntfs_index_remove() is now unused --- libntfs-3g/index.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libntfs-3g/index.c b/libntfs-3g/index.c index 645b74d3..8865a545 100644 --- a/libntfs-3g/index.c +++ b/libntfs-3g/index.c @@ -1841,7 +1841,8 @@ err_out: goto out; } -int ntfs_index_remove(ntfs_inode *dir_ni, ntfs_inode *ni, +int ntfs_index_remove(ntfs_inode *dir_ni, + ntfs_inode *ni __attribute__((unused)), const void *key, const int keylen) { int ret = STATUS_ERROR;