diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-03-02 07:45:30 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-03-02 07:45:40 +0100 |
commit | 380b858de9f6aae1ee74d3d8f0f7cf75fb68f207 (patch) | |
tree | 6c6a049fb13cf75773458817a331672ca148ad20 /unoidl | |
parent | 5f895a9c1522f6898d004bf2bcf48a5fb6245455 (diff) |
Fix shadowed declaration of "e"
Change-Id: I42740c0b01d33c90e6ad9f86a658ef27c2673fd3
Diffstat (limited to 'unoidl')
-rw-r--r-- | unoidl/source/reg2unoidl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |