interp_lua: fix bogus indentation, NFC

This commit is contained in:
Kyle Evans 2020-02-12 16:10:00 +00:00
parent 17f0dc77a4
commit 8e173ae7f4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=357828

View File

@ -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