Fix signed vs unsigned warning on 32-bit
This commit is contained in:
parent
7143df49bd
commit
124bd6a140
|
@ -15,7 +15,7 @@ struct printer_options {
|
||||||
struct printer {
|
struct printer {
|
||||||
int line;
|
int line;
|
||||||
int column;
|
int column;
|
||||||
unsigned int level;
|
int level;
|
||||||
unsigned int cycle_labels;
|
unsigned int cycle_labels;
|
||||||
struct htable cycle_traversed;
|
struct htable cycle_traversed;
|
||||||
struct printer_options opts;
|
struct printer_options opts;
|
||||||
|
|
Loading…
Reference in New Issue