From: Christian Biesinger Date: Wed, 5 Feb 2020 17:43:22 +0000 (-0600) Subject: Fix base class function call X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c6a42d11acf2d485bf70d76eda76fd005fcd6825;p=binutils-gdb.git Fix base class function call This was a typo introduced in f6ac5f3d63e03a81c4ff3749aba234961cc9090e. Found by looking through NetBSD's GDB patches: https://github.com/NetBSD/pkgsrc-wip/blob/master/gdb-netbsd/patches/patch-gdb_sparc-nat.h This patch can't be tested on Linux because Linux does not use the sparc_target template. gdb/ChangeLog: 2020-02-05 Christian Biesinger * sparc-nat.h (struct sparc_target) : Fix base class function call. Change-Id: I4fa88cbdc365efe89b84cc0619b60db38718d9ce --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 193edf0507d..b38ec254d1f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2020-02-05 Christian Biesinger + + * sparc-nat.h (struct sparc_target) : Fix base class + function call. + 2020-02-05 Christian Biesinger * ppc-nbsd-tdep.h: Fix macro name in #endif comment. diff --git a/gdb/sparc-nat.h b/gdb/sparc-nat.h index 1dbdd80b5ed..d07bd86d039 100644 --- a/gdb/sparc-nat.h +++ b/gdb/sparc-nat.h @@ -75,8 +75,8 @@ struct sparc_target : public BaseTarget return sparc_xfer_wcookie (object, annex, readbuf, writebuf, offset, len, xfered_len); - return BaseTarget (object, annex, readbuf, writebuf, - offset, len, xfered_len); + return BaseTarget::xfer_partial (object, annex, readbuf, writebuf, + offset, len, xfered_len); } };