aboutsummaryrefslogtreecommitdiff
path: root/src/indexamajig.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2010-04-04 16:34:40 +0200
committerThomas White <taw@bitwiz.org.uk>2010-04-04 16:34:40 +0200
commit802a981dcb74e5377ff31726b7a23a74fa2cd413 (patch)
treec56c3d13ed3ae40329c883e1bfbd862a7e6c2d84 /src/indexamajig.c
parentc1ce27d844cbd1f33ce3e3bb0c82a7ee74be86f4 (diff)
indexamajig: Remove pargs from struct process_result
Diffstat (limited to 'src/indexamajig.c')
-rw-r--r--src/indexamajig.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c
index 57a41930..00191205 100644
--- a/src/indexamajig.c
+++ b/src/indexamajig.c
@@ -66,7 +66,6 @@ struct process_args
struct process_result
{
int hit;
- struct process_args *pargs;
};
@@ -251,7 +250,6 @@ static void *process_image(void *pargsv)
result = malloc(sizeof(*result));
if ( result == NULL ) return NULL;
- result->pargs = pargs;
hdfile = hdfile_open(filename);
if ( hdfile == NULL ) {