aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Sperling <ssperling@sysmocom.de>2018-07-20 13:40:05 +0200
committerStefan Sperling <ssperling@sysmocom.de>2018-07-20 13:41:00 +0200
commitb3d32cd25efc05f1b6a2266767070b14e6d8966f (patch)
treed0ab668db81b4e85893e58a1610bacccdd6b4685
parent118fc8a708c8053a808b3204d6254240ed2d4081 (diff)
remove unused -p option from getopt() call in sccp_demo_user
-rw-r--r--examples/sccp_demo_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sccp_demo_user.c b/examples/sccp_demo_user.c
index 9a9d6eb..28dd166 100644
--- a/examples/sccp_demo_user.c
+++ b/examples/sccp_demo_user.c
@@ -169,7 +169,7 @@ int main(int argc, char **argv)
int remote_pc = DEFAULT_PC_CLIENT;
bool lflag = false, rflag = false, Lflag = false, Rflag = false;
- while ((ch = getopt(argc, argv, "cl:r:p:L:R:")) != -1) {
+ while ((ch = getopt(argc, argv, "cl:r:L:R:")) != -1) {
switch (ch) {
case 'c':
client = true;