From 2519ab4e30f36f6422d47866657ccf53f24840cb Mon Sep 17 00:00:00 2001 From: Chris Oei Date: Sat, 8 Sep 2012 13:11:54 -0700 Subject: [PATCH] Bug fix in options parsing --- main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/main.c b/main.c index fa14988..3ed0a5d 100644 --- a/main.c +++ b/main.c @@ -99,6 +99,7 @@ main(int argc, char *argv[]) break; case 'l': outputlength = atoi(optarg); + break; case 'm': maxmem = atoi(optarg); break;