From 15ed7921541a2a99a146587b6e5c07c5ff6dd316 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 24 Sep 2017 08:34:36 +0800 Subject: sgsnemu/cmdline.ggo: Remove 'unsigned' which is no longer supported It seems like modern gengetopt no longer supports 'unsigned int' argument types, and we need to use 'int' instead. tested with 2.22.6 Change-Id: I34ca86cb3cc482400a7c4b3bf77c8668aaef562e --- sgsnemu/cmdline.ggo | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sgsnemu/cmdline.ggo b/sgsnemu/cmdline.ggo index 0c1b06c..a000748 100644 --- a/sgsnemu/cmdline.ggo +++ b/sgsnemu/cmdline.ggo @@ -40,8 +40,8 @@ option "ipup" - "Script to run after link-up" string no option "ipdown" - "Script to run after link-down" string no option "pinghost" - "Ping remote host" string no -option "pingrate" - "Number of ping req per second" unsigned int default="1" no -option "pingsize" - "Number of ping data bytes" unsigned int default="56" no -option "pingcount" - "Number of ping req to send" unsigned int default="0" no +option "pingrate" - "Number of ping req per second" int default="1" no +option "pingsize" - "Number of ping data bytes" int default="56" no +option "pingcount" - "Number of ping req to send" int default="0" no option "pingquiet" - "Do not print ping packet info" flag off -- cgit v1.2.3