From: Simon Marchi Date: Tue, 27 Oct 2015 02:00:41 +0000 (-0400) Subject: ctf_xfer_partial: Return TARGET_XFER_E_IO instead of -1 on error X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c92444842b32533b6411230e3554509a09924163;p=binutils-gdb.git ctf_xfer_partial: Return TARGET_XFER_E_IO instead of -1 on error Use the enum value instead of the corresponding int value. gdb/ChangeLog: * ctf.c (ctf_xfer_partial): Return TARGET_XFER_E_IO instead of -1 on error. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a481f099741..a063a049015 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2015-10-26 Simon Marchi + + * ctf.c (ctf_xfer_partial): Return TARGET_XFER_E_IO instead of + -1 on error. + 2015-10-26 Doug Evans PR symtab/17391 diff --git a/gdb/ctf.c b/gdb/ctf.c index 6c1aedea757..dc378d184b4 100644 --- a/gdb/ctf.c +++ b/gdb/ctf.c @@ -1273,7 +1273,7 @@ ctf_xfer_partial (struct target_ops *ops, enum target_object object, { /* We're only doing regular memory for now. */ if (object != TARGET_OBJECT_MEMORY) - return -1; + return TARGET_XFER_E_IO; if (readbuf == NULL) error (_("ctf_xfer_partial: trace file is read-only"));