aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/fllib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/source/fllib.cpp')
-rwxr-xr-xexternals/grill/flext/source/fllib.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/externals/grill/flext/source/fllib.cpp b/externals/grill/flext/source/fllib.cpp
index ce4e5703..80e95729 100755
--- a/externals/grill/flext/source/fllib.cpp
+++ b/externals/grill/flext/source/fllib.cpp
@@ -175,10 +175,10 @@ void flext_obj::lib_init(const char *name,void setupfun(),bool attr)
setupfun();
}
catch(std::exception &x) {
- error("%s - Exception at library setup: %s",name,x.what());
+ error("%s - %s",name,x.what());
}
catch(char *txt) {
- error("%s - Exception at library setup: %s",name,txt);
+ error("%s - %s",name,txt);
}
catch(...) {
error("%s - Unknown exception at library setup",name);