From f5ef90183114ba9429109038b0a9be7f3f90b900 Mon Sep 17 00:00:00 2001 From: Philip Chimento Date: Sat, 5 Feb 2011 02:18:37 +0100 Subject: [PATCH] Fix bug in Frotz option parsing The '-i' option was mistakenly instructed to swallow a value. --- interpreters/frotz/glkmisc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interpreters/frotz/glkmisc.c b/interpreters/frotz/glkmisc.c index f18f149..c559818 100644 --- a/interpreters/frotz/glkmisc.c +++ b/interpreters/frotz/glkmisc.c @@ -119,7 +119,7 @@ void os_process_arguments(int argc, char *argv[]) /* Parse the options */ do { - c = zgetopt(argc, argv, "aAi:oOPQs:S:tu:xZ:"); + c = zgetopt(argc, argv, "aAioOPQs:S:tu:xZ:"); switch (c) { case 'a': option_attribute_assignment = 1; break; -- 2.30.2