From: Rusty Russell Date: Thu, 13 Jan 2011 08:55:01 +0000 (+1030) Subject: htable: fix type of cmpfn in htable_type X-Git-Url: http://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=23e4603462692031a29ea4b2a882f957de4f2922;hp=23e4603462692031a29ea4b2a882f957de4f2922 htable: fix type of cmpfn in htable_type It in fact takes an object and a key to compare, not two keys. The test case had the key as first element of the object, so it worked, but ccanlint lost track of module dependencies due to this bug, and thus would build submodules multiple times. ---