From 9af15d5b5930a57acf3e8dd9a8c2b2d9bfef3221 Mon Sep 17 00:00:00 2001 From: Maciej Piechotka Date: Wed, 26 Dec 2012 10:26:09 +0100 Subject: [PATCH] Fix compilation error, fixes bug #690723 --- gee/concurrentset.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gee/concurrentset.vala b/gee/concurrentset.vala index 854340f..c0d3d75 100644 --- a/gee/concurrentset.vala +++ b/gee/concurrentset.vala @@ -1078,7 +1078,7 @@ public class Gee.ConcurrentSet : AbstractSortedSet { } inline ~Tower () { - uint8 height = get_height(); + int height = get_height(); for (uint8 i = 0; i < height; i++) { set_succ (null, State.NONE, i); set_backlink (null, i); -- 2.7.4