summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/input/input_file.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input/input_file.c b/src/input/input_file.c
index 3f71ab8cb..8c7ed040e 100644
--- a/src/input/input_file.c
+++ b/src/input/input_file.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_file.c,v 1.111 2006/09/09 22:11:08 dgp85 Exp $
+ * $Id: input_file.c,v 1.112 2006/09/10 00:59:37 dgp85 Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -245,6 +245,7 @@ static off_t file_plugin_get_length (input_plugin_t *this_gen) {
}
static uint32_t file_plugin_get_blocksize (input_plugin_t *this_gen) {
+ file_input_plugin_t *this = (file_input_plugin_t *) this_gen;
#ifdef HAVE_MMAP
if ( this->mmap_on )
return this->mmap_len;