aboutsummaryrefslogtreecommitdiffstats
path: root/sgsnemu/cmdline.ggo
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-09-24 08:34:36 +0800
committerHarald Welte <laforge@gnumonks.org>2017-09-24 08:34:36 +0800
commit73d28c9dda6b5d523977df65c5aa03c50456ccda (patch)
tree1dec21eacccd8ffa39f2519f7784ed1394235c19 /sgsnemu/cmdline.ggo
parentea70f3619acbba7dba0e859f7eb52bdd53d4c17c (diff)
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
Diffstat (limited to 'sgsnemu/cmdline.ggo')
-rw-r--r--sgsnemu/cmdline.ggo6
1 files changed, 3 insertions, 3 deletions
diff --git a/sgsnemu/cmdline.ggo b/sgsnemu/cmdline.ggo
index ee5e55d..6559f55 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