From 380b858de9f6aae1ee74d3d8f0f7cf75fb68f207 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 2 Mar 2013 07:45:30 +0100 Subject: Fix shadowed declaration of "e" Change-Id: I42740c0b01d33c90e6ad9f86a658ef27c2673fd3 --- unoidl/source/reg2unoidl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unoidl') diff --git a/unoidl/source/reg2unoidl.cxx b/unoidl/source/reg2unoidl.cxx index c73909a95ae4..730d42efafe7 100644 --- a/unoidl/source/reg2unoidl.cxx +++ b/unoidl/source/reg2unoidl.cxx @@ -753,9 +753,9 @@ SAL_IMPLEMENT_MAIN() { std::size_t size; try { off = writeMap(f, prov->createRootCursor(), &size); - } catch (unoidl::FileFormatException & e) { + } catch (unoidl::FileFormatException & e1) { std::cerr - << "Bad input <" << e.getUri() << ">: " << e.getDetail() + << "Bad input <" << e1.getUri() << ">: " << e1.getDetail() << std::endl; std::exit(EXIT_FAILURE); } -- cgit