diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-05-31 18:52:38 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-05-31 18:52:38 +0000 |
commit | 5eed219cefb88380452789eeddc4273b50077c5f (patch) | |
tree | d3e00c0a3cd450265f21cb26c5c4c207c4482bc6 /sys/gnu | |
parent | bdf95cdef08a086415b3bca7742f6b8fd7fa0592 (diff) | |
download | src-5eed219cefb88380452789eeddc4273b50077c5f.tar.gz src-5eed219cefb88380452789eeddc4273b50077c5f.zip |
Remove extra ';'
Found by: FlexeLint
Notes
Notes:
svn path=/head/; revision=115490
Diffstat (limited to 'sys/gnu')
-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 b1d913facd22..9eaab4f10e4f 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; } |