From 1ca794e0b071416afdf3f351e0a953029f59eff7 Mon Sep 17 00:00:00 2001
From: Mike Pall <mike>
Date: Mon, 24 Mar 2014 09:41:33 +0100
Subject: Fix compiler warnings.

---
 src/luajit.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

(limited to 'src')

diff --git a/src/luajit.c b/src/luajit.c
index 4cccf04e..e0343439 100644
--- a/src/luajit.c
+++ b/src/luajit.c
@@ -301,17 +301,17 @@ static int loadjitmodule(lua_State *L)
   lua_concat(L, 2);
   if (lua_pcall(L, 1, 1, 0)) {
     const char *msg = lua_tostring(L, -1);
-    if (msg && !strncmp(msg, "module ", 7)) {
-    err:
-      l_message(progname,
-		"unknown luaJIT command or jit.* modules not installed");
-      return 1;
-    } else {
-      return report(L, 1);
-    }
+    if (msg && !strncmp(msg, "module ", 7))
+      goto nomodule;
+    return report(L, 1);
   }
   lua_getfield(L, -1, "start");
-  if (lua_isnil(L, -1)) goto err;
+  if (lua_isnil(L, -1)) {
+  nomodule:
+    l_message(progname,
+	      "unknown luaJIT command or jit.* modules not installed");
+    return 1;
+  }
   lua_remove(L, -2);  /* Drop module table. */
   return 0;
 }
-- 
cgit v1.2.3-55-g6feb