aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/fllib.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-08-23 02:33:18 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-08-23 02:33:18 +0000
commitc4679700d4a75a1f8274880e075d6441f6f0b287 (patch)
tree940db7f2eb792ac81a97c5621e34df1ec561140e /externals/grill/flext/source/fllib.cpp
parentd2f159b856f375a2ba2fc9e720e195d2a2bf97b5 (diff)
""
svn path=/trunk/; revision=1969
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);