aboutsummaryrefslogtreecommitdiff
path: root/toys/other/blkdiscard.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/other/blkdiscard.c')
-rw-r--r--toys/other/blkdiscard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/blkdiscard.c b/toys/other/blkdiscard.c
index a516676e..862e4fed 100644
--- a/toys/other/blkdiscard.c
+++ b/toys/other/blkdiscard.c
@@ -44,7 +44,7 @@ void blkdiscard_main(void)
unsigned long long ol[2];
// TODO: if numeric arg was long long array could live in TT.
- if (FLAG(o)) ol[0] = TT.o;
+ ol[0] = TT.o;
if (FLAG(l)) ol[1] = TT.l;
else {
xioctl(fd, BLKGETSIZE64, ol+1);