Browse Source

avoid "unreacheable code" warnings

Roberto Ierusalimschy 14 years ago
parent
commit
bcce769d29
1 changed files with 5 additions and 4 deletions
  1. 5 4
      lmathlib.c

+ 5 - 4
lmathlib.c

@@ -1,5 +1,5 @@
 /*
 /*
-** $Id: lmathlib.c,v 1.77 2010/11/11 15:39:12 roberto Exp roberto $
+** $Id: lmathlib.c,v 1.78 2010/11/12 15:47:34 roberto Exp roberto $
 ** Standard mathematical library
 ** Standard mathematical library
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 */
 */
@@ -136,11 +136,12 @@ static int math_log (lua_State *L) {
 
 
 static int math_log10 (lua_State *L) {
 static int math_log10 (lua_State *L) {
 #if !defined(LUA_COMPAT_LOG10)
 #if !defined(LUA_COMPAT_LOG10)
-  luaL_error(L, "function " LUA_QL("log10")
-                " is deprecated; use log(x, 10) instead");
-#endif
+  return luaL_error(L, "function " LUA_QL("log10")
+                       " is deprecated; use log(x, 10) instead");
+#else
   lua_pushnumber(L, l_tg(log10)(luaL_checknumber(L, 1)));
   lua_pushnumber(L, l_tg(log10)(luaL_checknumber(L, 1)));
   return 1;
   return 1;
+#endif
 }
 }
 
 
 static int math_exp (lua_State *L) {
 static int math_exp (lua_State *L) {