From eecad5e43f0720912b7ea6006ea7c4eb87300e23 Mon Sep 17 00:00:00 2001 From: Robin Stuart Date: Thu, 27 Oct 2016 09:47:04 +0100 Subject: [PATCH] Allow minimum number of columns --- frontend/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/main.c b/frontend/main.c index be38528b..b13bdbd5 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -602,7 +602,7 @@ int main(int argc, char **argv) { } if (!strcmp(long_options[option_index].name, "cols")) { - if ((atoi(optarg) >= 6) && (atoi(optarg) <= 66)) { + if ((atoi(optarg) >= 1) && (atoi(optarg) <= 66)) { my_symbol->option_2 = atoi(optarg); } else { fprintf(stderr, "Number of columns out of range\n");