Fix signed vs unsigned warning on 32-bit

This commit is contained in:
Lassi Kortela 2019-10-14 00:49:42 +03:00
parent 7143df49bd
commit 124bd6a140
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ struct printer_options {
struct printer {
int line;
int column;
unsigned int level;
int level;
unsigned int cycle_labels;
struct htable cycle_traversed;
struct printer_options opts;