From bf5d187539268bf6cb8710b8af864f4225b15d86 Mon Sep 17 00:00:00 2001 From: Geoffroy Van Cutsem Date: Wed, 29 Apr 2020 09:47:57 +0200 Subject: [PATCH] devicemodel: remove obsolete argument from list of options Remove the 'p' argument from the list as it is now obsolete and there is no implementation for it in the code. Tracked-On: #4732 Signed-off-by: Geoffroy Van Cutsem --- devicemodel/core/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devicemodel/core/main.c b/devicemodel/core/main.c index 0c97f86dc..3a172f0af 100644 --- a/devicemodel/core/main.c +++ b/devicemodel/core/main.c @@ -777,7 +777,7 @@ static struct option long_options[] = { {0, 0, 0, 0 }, }; -static char optstr[] = "hAWYvE:k:r:B:p:s:m:l:U:G:i:"; +static char optstr[] = "hAWYvE:k:r:B:s:m:l:U:G:i:"; int main(int argc, char *argv[])