aboutsummaryrefslogtreecommitdiff
path: root/src/intercopycontext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/intercopycontext.cpp')
-rw-r--r--src/intercopycontext.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intercopycontext.cpp b/src/intercopycontext.cpp
index 0b4aabc..978a69b 100644
--- a/src/intercopycontext.cpp
+++ b/src/intercopycontext.cpp
@@ -335,10 +335,10 @@ void InterCopyContext::lookup_native_func() const
335 // when mode_ == LookupMode::FromKeeper, L is a keeper state and L2 is not, therefore L2 is the state where we want to raise the error 335 // when mode_ == LookupMode::FromKeeper, L is a keeper state and L2 is not, therefore L2 is the state where we want to raise the error
336 raise_luaL_error( 336 raise_luaL_error(
337 getErrL(), 337 getErrL(),
338 "%s%s: function '" STRINGVIEW_FMT "' not found in %s destination transfer database.", 338 "%s%s: function '%s' not found in %s destination transfer database.",
339 lua_isnil(L2, -1) ? "" : "INTERNAL ERROR IN ", 339 lua_isnil(L2, -1) ? "" : "INTERNAL ERROR IN ",
340 _from ? _from : "main", 340 _from ? _from : "main",
341 _fqn.size(), _fqn.data(), 341 _fqn.data(),
342 _to ? _to : "main"); 342 _to ? _to : "main");
343 return; 343 return;
344 } 344 }