[lldb/Commands] Align process launch --plugin with process attach (NFC)

Following `7169d3a315f4cdc19c4ab6b8f20c6f91b46ba9b8`, this patch updates
the short option for the plugin command option to (`-p` to `-P`) to
align with the `process attach` command options.

The long option remains the same since there are already the same for both
commands.

Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
This commit is contained in:
Med Ismail Bennani 2021-01-20 20:29:13 +01:00
parent e406de77c6
commit 8fc9b6c2c5
No known key found for this signature in database
GPG Key ID: 9040401522D38F4E
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ Status CommandOptionsProcessLaunch::SetOptionValue(
break;
}
case 'p': // Process plug-in name
case 'P': // Process plug-in name
launch_info.SetProcessPluginName(option_arg);
break;