diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-11-06 19:21:10 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-11-06 19:21:10 -0700 |
commit | 8d1e5f647509b14c79b848d3b2c88814ddd0be35 (patch) | |
tree | 00102d7c0913c12921b849530c52daa7122ba324 | |
parent | 5619f0117a15e67dfc0b12f21d58be41450d738f (diff) | |
download | teliva-8d1e5f647509b14c79b848d3b2c88814ddd0be35.tar.gz |
.
-rw-r--r-- | src/lcurseslib.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lcurseslib.c b/src/lcurseslib.c index 000a1ea..ddec163 100644 --- a/src/lcurseslib.c +++ b/src/lcurseslib.c @@ -65,9 +65,7 @@ static int Prefresh (lua_State *L) { } -static int -argtypeerror(lua_State *L, int narg, const char *expected) -{ +static int argtypeerror (lua_State *L, int narg, const char *expected) { const char *got = luaL_typename(L, narg); return luaL_argerror(L, narg, lua_pushfstring(L, "%s expected, got %s", expected, got)); |