diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-09-20 06:28:25 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-09-20 06:28:25 +0000 |
commit | 9f630f25366256c52721937800ddbb8958053097 (patch) | |
tree | a14875e74bee9dfb61988fd62c63030678de7a1f /usr.bin | |
parent | 551b53740ecd1a84eb5bf1e89319cd6e6b61d9fa (diff) |
Remove bogus comment.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/dc/bcode.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/usr.bin/dc/bcode.c b/usr.bin/dc/bcode.c index 507c748fd77..a53898f7eab 100644 --- a/usr.bin/dc/bcode.c +++ b/usr.bin/dc/bcode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bcode.c,v 1.3 2003/09/19 20:58:58 deraadt Exp $ */ +/* $OpenBSD: bcode.c,v 1.4 2003/09/20 06:28:24 otto Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -17,7 +17,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: bcode.c,v 1.3 2003/09/19 20:58:58 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: bcode.c,v 1.4 2003/09/20 06:28:24 otto Exp $"; #endif /* not lint */ #include <ssl/ssl.h> @@ -963,10 +963,6 @@ bmod(void) } r = new_number(); - /* - * XXX gives incorrect results for scale > 0, but is AT&T and - * GNU compatible - */ scale = max(a->scale, b->scale); r->scale = max(b->scale, a->scale + bmachine.scale); |