commit 7e439bd2231ed288fcd97d73f5b91512cb6d7c89 Author: Ivan A. Melnikov Date: Wed Jan 16 16:44:27 2019 +0400 mips-linux-nat: Fix build This change ammends gdb-rhbz795424-bitpos-20of25.patch from Fedora which missed one more place where 'int' should have been replaced with LONGEST. Signed-off-by: Ivan A. Melnikov diff --git a/gdb/gdb/mips-linux-nat.c b/gdb/gdb/mips-linux-nat.c index 32835c16..e3db7b6b 100644 --- a/gdb/gdb/mips-linux-nat.c +++ b/gdb/gdb/mips-linux-nat.c @@ -63,7 +63,7 @@ public: bool stopped_data_address (CORE_ADDR *) override; - int region_ok_for_hw_watchpoint (CORE_ADDR, int) override; + int region_ok_for_hw_watchpoint (CORE_ADDR, LONGEST) override; const struct target_desc *read_description () override;