diff options
author | Ian Darwin <ian@cvs.openbsd.org> | 2009-06-20 14:23:39 +0000 |
---|---|---|
committer | Ian Darwin <ian@cvs.openbsd.org> | 2009-06-20 14:23:39 +0000 |
commit | a27120559dcead5bd6a1565feef76bbb4be304ce (patch) | |
tree | acbfecbde531c466fc1b3c764ef23708623329f5 | |
parent | 4950b2fd15fb20777889258d5385ee031358806d (diff) |
Repair comment ID & typo, no binary change
-rw-r--r-- | regress/lib/libutil/fmt_scaled/fmt_test.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/regress/lib/libutil/fmt_scaled/fmt_test.c b/regress/lib/libutil/fmt_scaled/fmt_test.c index 82d84988c3b..cf79644bfb5 100644 --- a/regress/lib/libutil/fmt_scaled/fmt_test.c +++ b/regress/lib/libutil/fmt_scaled/fmt_test.c @@ -1,4 +1,4 @@ -/* $OpenBSD */ +/* $OpenBSD: fmt_test.c,v 1.9 2009/06/20 14:23:38 ian Exp $ */ /* * Combined tests for fmt_scaled and scan_scaled. @@ -88,10 +88,10 @@ static struct { /* the test cases */ { 1025, "1.0K", 0 }, { 1234, "1.2K", 0 }, { -1234, "-1.2K", 0 }, - { 1484, "1.4K", 0 }, /* rouding boundary, down */ - { 1485, "1.5K", 0 }, /* rouding boundary, up */ - { -1484, "-1.4K", 0 }, /* rouding boundary, down */ - { -1485, "-1.5K", 0 }, /* rouding boundary, up */ + { 1484, "1.4K", 0 }, /* rounding boundary, down */ + { 1485, "1.5K", 0 }, /* rounding boundary, up */ + { -1484, "-1.4K", 0 }, /* rounding boundary, down */ + { -1485, "-1.5K", 0 }, /* rounding boundary, up */ { 1536, "1.5K", 0 }, { 1786, "1.7K", 0 }, { 1800, "1.8K", 0 }, |