diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-04-04 16:34:40 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2010-04-04 16:34:40 +0200 |
commit | 802a981dcb74e5377ff31726b7a23a74fa2cd413 (patch) | |
tree | c56c3d13ed3ae40329c883e1bfbd862a7e6c2d84 | |
parent | c1ce27d844cbd1f33ce3e3bb0c82a7ee74be86f4 (diff) |
indexamajig: Remove pargs from struct process_result
-rw-r--r-- | src/indexamajig.c | 2 |
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 ) { |