# HG changeset patch # User mas01cr # Date 1267804882 0 # Node ID 047415d1805eaa2a801930d3300239cc6e9334fa # Parent 421b7403ad6846ed14b3d2eb6e2052369d8c3664 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. diff -r 421b7403ad68 -r 047415d1805e bindings/python/pyadbmodule.c --- 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;