aboutsummaryrefslogtreecommitdiff
path: root/src/lua_typeerror.c
blob: d6a3d76263b4648ad7260752b9ba2a8f87c07355 (plain)
1
2
3
4
5
6
7
8
9
10
#include "lua_typeerror.h"
#include "lua.h"
#include "lauxlib.h"

int luaL_typeerror (lua_State *L, int narg, const char *tname) 
{
  const char *msg = lua_pushfstring(L, "%s expected, got %s",tname, luaL_typename(L, narg));
  return luaL_argerror(L, narg, msg);
}