changed type to unsigned to suppress warnings
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 10 May 2007 21:41:22 +0000 (21:41 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 10 May 2007 21:41:22 +0000 (21:41 +0000)
[r13779]

ir/be/bechordal_draw.c

index ab646be..6f4ef2f 100644 (file)
@@ -251,11 +251,11 @@ typedef struct _draw_chordal_env_t {
 } draw_chordal_env_t;
 
 struct block_dims {
-       int    max_step;
-       int    min_step;
-       int    max_color;
-       rect_t box;
-       rect_t subtree_box;
+       unsigned max_step;
+       int      min_step;
+       int      max_color;
+       rect_t   box;
+       rect_t   subtree_box;
 };
 
 #define doz(a, b) MAX((a) - (b), 0)