diff options
author | phk <phk@FreeBSD.org> | 2003-05-31 18:52:38 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-05-31 18:52:38 +0000 |
commit | 4c5b260ddcb0f048ba772ce14ca98197ce8e0255 (patch) | |
tree | d3e00c0a3cd450265f21cb26c5c4c207c4482bc6 | |
parent | 4b6cad665b3742623e1732e03947b941252b7abd (diff) | |
download | FreeBSD-src-4c5b260ddcb0f048ba772ce14ca98197ce8e0255.zip FreeBSD-src-4c5b260ddcb0f048ba772ce14ca98197ce8e0255.tar.gz |
Remove extra ';'
Found by: FlexeLint
-rw-r--r-- | sys/gnu/i386/fpemul/fpu_trig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/gnu/i386/fpemul/fpu_trig.c b/sys/gnu/i386/fpemul/fpu_trig.c index b1d913f..9eaab4f 100644 --- a/sys/gnu/i386/fpemul/fpu_trig.c +++ b/sys/gnu/i386/fpemul/fpu_trig.c @@ -103,7 +103,7 @@ trig_arg(FPU_REG * X) rv = q & 7; control_word = old_cw; - return rv;; + return rv; } |