changeset 679:047415d1805e

Make the python bindings compile again using the new hopsize stuff It's not an ideal fix; it ties together the query and instance hops. Nevertheless, building is better than not building.
author mas01cr
date Fri, 05 Mar 2010 16:01:22 +0000
parents 421b7403ad68
children 15e71890b584
files bindings/python/pyadbmodule.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bindings/python/pyadbmodule.c	Fri Mar 05 16:01:18 2010 +0000
+++ b/bindings/python/pyadbmodule.c	Fri Mar 05 16:01:22 2010 +0000
@@ -328,7 +328,9 @@
 	}
 	if (hop){
 		spec->refine.flags = spec->refine.flags | ADB_REFINE_HOP_SIZE;
-		spec->refine.hopsize = hop;
+                /* not ideal but a temporary bandage fix */
+		spec->refine.qhopsize = hop;
+		spec->refine.ihopsize = hop;
 	}
 	//setup the datum
 	spec->qid.datum->data = NULL;