From 8e173ae7f494838227893430bda0c5c4ec8a312c Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Wed, 12 Feb 2020 16:10:00 +0000 Subject: [PATCH] interp_lua: fix bogus indentation, NFC --- stand/common/interp_lua.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stand/common/interp_lua.c b/stand/common/interp_lua.c index 4953caa35c5e..ac3a636fa5f4 100644 --- a/stand/common/interp_lua.c +++ b/stand/common/interp_lua.c @@ -124,10 +124,10 @@ interp_init(void) filename = LOADER_LUA; if (interp_include(filename) != 0) { - const char *errstr = lua_tostring(luap, -1); - errstr = errstr == NULL ? "unknown" : errstr; - printf("Startup error in %s:\nLUA ERROR: %s.\n", filename, errstr); - lua_pop(luap, 1); + const char *errstr = lua_tostring(luap, -1); + errstr = errstr == NULL ? "unknown" : errstr; + printf("Startup error in %s:\nLUA ERROR: %s.\n", filename, errstr); + lua_pop(luap, 1); setenv("autoboot_delay", "NO", 1); } } @@ -144,7 +144,7 @@ interp_run(const char *line) luap = softc->luap; LDBG("executing line..."); if ((status = luaL_dostring(luap, line)) != 0) { - lua_pop(luap, 1); + lua_pop(luap, 1); /* * The line wasn't executable as lua; run it through parse to * to get consistent parsing of command line arguments, then