parse: minimum options values are signed
authorJens Axboe <axboe@kernel.dk>
Wed, 25 Oct 2017 19:06:40 +0000 (13:06 -0600)
committerJens Axboe <axboe@kernel.dk>
Wed, 25 Oct 2017 19:06:40 +0000 (13:06 -0600)
commitff523a66e5af357e67602caf33de1e2cd0521b08
treedc73cf5d3aa1ed2947d342c56ddb628b3871ad30
parent71aa48eb4eed51adb719d159810ab0044b2a7154
parse: minimum options values are signed

Rebecca reports that using an invalid value for the nice
parameter yields:

min value out of range: 18446744073709551596 (4294967277 min)

where it really should be:

min value out of range: -20 (-19 min)

Print the minimum values as signed, if we hit the out-of-range
error.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
parse.c