Jacek Caban : jscript: Removed useless return statement in jsval_number.

Alexandre Julliard julliard at winehq.org
Wed Oct 3 13:20:36 CDT 2012


Module: wine
Branch: master
Commit: 730479e6a4b00d9143bd4a6f7accccb726559257
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=730479e6a4b00d9143bd4a6f7accccb726559257

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Wed Oct  3 17:54:14 2012 +0200

jscript: Removed useless return statement in jsval_number.

---

 dlls/jscript/jsval.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/dlls/jscript/jsval.h b/dlls/jscript/jsval.h
index d355b5e..c75204f 100644
--- a/dlls/jscript/jsval.h
+++ b/dlls/jscript/jsval.h
@@ -154,7 +154,6 @@ static inline jsval_t jsval_number(double n)
             ret.u.s.tag = 0x7ff00000;
         }
     }
-    return ret;
 #else
     ret.type = JSV_NUMBER;
     ret.u.n = n;




More information about the wine-cvs mailing list