From 30579fc3e7c73bbad5d376c43f226b2c16c7cebb Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Fri, 20 Dec 2024 16:07:15 +0100 Subject: Fix bad formatted error message --- src/intercopycontext.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/intercopycontext.cpp b/src/intercopycontext.cpp index 1be4c53..fd6b5a5 100644 --- a/src/intercopycontext.cpp +++ b/src/intercopycontext.cpp @@ -350,10 +350,9 @@ void InterCopyContext::lookupNativeFunction() const lua_pop(L2, 1); // L2: {} f raise_luaL_error( getErrL(), - "%s%s: %s '%s' not found in %s destination transfer database.", + "%s%s: '%s' not found in %s destination transfer database.", lua_isnil(L2, -1) ? "" : "INTERNAL ERROR IN ", _from.empty() ? "main" : _from.data(), - luaG_typename(L2, _objType), _fqn.data(), _to.empty() ? "main" : _to.data()); return; -- cgit v1.2.3-55-g6feb