aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/flate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libtests/flate.cc')
-rw-r--r--libtests/flate.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtests/flate.cc b/libtests/flate.cc
index d05e7f92..dc65c565 100644
--- a/libtests/flate.cc
+++ b/libtests/flate.cc
@@ -105,9 +105,9 @@ int main(int argc, char* argv[])
{
run(filename);
}
- catch (QEXC::General& e)
+ catch (std::exception& e)
{
- std::cout << e.unparse() << std::endl;
+ std::cout << e.what() << std::endl;
}
return 0;
}