diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-05-11T02·19+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-05-11T02·19+0000 |
commit | 9d72bf8835f3012169aaa88ec608172d5a056b9e (patch) | |
tree | 50aff33e5188dd11ab2ed2bbd188995b2c1db077 /src/libutil/aterm-map.hh | |
parent | e3c07782d124cdd8d0aab2b498225cdca28cad66 (diff) |
* 64-bit compatibility fixes (for problems revealed by building on an Athlon
64 running 64-bit SUSE). A patched ATerm library is required to run Nix succesfully.
Diffstat (limited to 'src/libutil/aterm-map.hh')
-rw-r--r-- | src/libutil/aterm-map.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libutil/aterm-map.hh b/src/libutil/aterm-map.hh index 203b42934a0d..115ed36cd53a 100644 --- a/src/libutil/aterm-map.hh +++ b/src/libutil/aterm-map.hh @@ -113,8 +113,8 @@ private: void copy(KeyValue * elements, unsigned int capacity); - inline unsigned int hash1(ATerm key) const; - inline unsigned int hash2(ATerm key) const; + inline unsigned long hash1(ATerm key) const; + inline unsigned long hash2(ATerm key) const; }; |