summaryrefslogtreecommitdiff
path: root/test/dtest.c
diff options
context:
space:
mode:
authorDavid Schultz <das@FreeBSD.org>2011-03-09 06:14:33 +0000
committerDavid Schultz <das@FreeBSD.org>2011-03-09 06:14:33 +0000
commit21a2b1c905e6a3ae73e3ca075627e81a2ccac58f (patch)
tree80228e2b243573cbd695c52e7a912cc1643cd1b2 /test/dtest.c
parent9ea4d2a87415d5928272c15f22583103f2ccfe30 (diff)
Notes
Diffstat (limited to 'test/dtest.c')
-rw-r--r--test/dtest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dtest.c b/test/dtest.c
index adcbfd11a2287..0140f2ed32605 100644
--- a/test/dtest.c
+++ b/test/dtest.c
@@ -78,7 +78,7 @@ main(Void)
continue;
case 'n':
i = s[1];
- if (i <= ' ' || i >= '0' && i <= '9') {
+ if (i <= ' ' || (i >= '0' && i <= '9')) {
ndig = atoi(s+1);
continue;
}