diff options
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/hdparm.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c index 97f1b57..b901423 100644 --- a/miscutils/hdparm.c +++ b/miscutils/hdparm.c @@ -2058,13 +2058,13 @@ static void identify_from_stdin(void) /* busybox specific stuff */ static void parse_opts(unsigned long *get, unsigned long *set, unsigned long *value, int min, int max) { - if (get) { - *get = 1; - } - if (optarg) { - *set = 1; - *value = bb_xgetlarg(optarg, 10, min, max); - } + if (get) { + *get = 1; + } + if (optarg) { + *set = 1; + *value = bb_xgetlarg(optarg, 10, min, max); + } } static void parse_xfermode(int flag, unsigned long *get, unsigned long *set, int *value) |