From: Lauri Kasanen Date: Mon, 14 Jun 2021 11:25:16 +0000 (+0300) Subject: Ignore -p X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=HEAD;p=kvm-minippc.git Ignore -p --- diff --git a/main.c b/main.c index 42890f6..86181fb 100644 --- a/main.c +++ b/main.c @@ -314,7 +314,7 @@ int main(int argc, char **argv) { { "help", 0, NULL, 'h' }, { NULL, 0, NULL, 0 } }; - const char opts[] = "i:g:f:s:l:d:t:h"; + const char opts[] = "i:g:f:s:l:d:t:hp:"; struct kvm_run *run; struct kvm_regs regs; @@ -395,6 +395,8 @@ int main(int argc, char **argv) { return 1; } break; + case 'p': // ignored + break; case 'h': default: help(argv[0]);