From d6c7e6986657731c192be72f66d08d58af341a77 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 30 Aug 2022 12:18:57 -0400 Subject: [PATCH] add missing parentheses --- fpga/lib/ips/dma.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fpga/lib/ips/dma.cpp b/fpga/lib/ips/dma.cpp index 736a33e19..ffb3072d1 100644 --- a/fpga/lib/ips/dma.cpp +++ b/fpga/lib/ips/dma.cpp @@ -381,8 +381,9 @@ Dma::isMemoryBlockAccesible(const MemoryBlock &mem, const std::string &interface try { mm.findPath(getMasterAddrSpaceByInterface(interface), mem.getAddrSpaceId()); - } catch (const std::out_of_range&) + } catch (const std::out_of_range&) { return false; // Not (yet) accessible + } return true; }