From 49b4aab59a8db2ff4b5fc24d7884c80dbe4570dc Mon Sep 17 00:00:00 2001 From: Christophe Grenier Date: Sun, 4 Jan 2009 19:43:44 +0100 Subject: Fix for C++ compilation --- src/ext2_dir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ext2_dir.c') diff --git a/src/ext2_dir.c b/src/ext2_dir.c index e547ff07..f7d8d7dd 100644 --- a/src/ext2_dir.c +++ b/src/ext2_dir.c @@ -202,11 +202,11 @@ static int list_dir_proc2(ext2_ino_t dir, int offset, int blocksize, char *buf, - void *private) + void *privateinfo) { struct ext2_inode inode; ext2_ino_t ino; - struct ext2_dir_struct *ls = (struct ext2_dir_struct *) private; + struct ext2_dir_struct *ls = (struct ext2_dir_struct *) privateinfo; file_data_t *new_file; if(entry==DIRENT_DELETED_FILE && (ls->dir_data->param & FLAG_LIST_DELETED)==0) return 0; -- cgit