From 350501d0c3ad7eefa455643a5245f9c3e152d096 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 22 Apr 2018 16:49:33 +0200 Subject: [PATCH] rigol-ds: Make two log messages more specific. Slightly modified version of a suggested change by Aleksander Alsekseev. --- src/hardware/rigol-ds/protocol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hardware/rigol-ds/protocol.c b/src/hardware/rigol-ds/protocol.c index d21008b6..453ab658 100644 --- a/src/hardware/rigol-ds/protocol.c +++ b/src/hardware/rigol-ds/protocol.c @@ -631,7 +631,7 @@ SR_PRIV int rigol_ds_receive(int fd, int revents, void *cb_data) /* Still reading the header. */ return TRUE; if (len == -1) { - sr_err("Read error, aborting capture."); + sr_err("Error while reading block header, aborting capture."); packet.type = SR_DF_FRAME_END; sr_session_send(sdi, &packet); sr_dev_acquisition_stop(sdi); @@ -664,7 +664,7 @@ SR_PRIV int rigol_ds_receive(int fd, int revents, void *cb_data) len = sr_scpi_read_data(scpi, (char *)devc->buffer, len); if (len == -1) { - sr_err("Read error, aborting capture."); + sr_err("Error while reading block data, aborting capture."); packet.type = SR_DF_FRAME_END; sr_session_send(sdi, &packet); sr_dev_acquisition_stop(sdi);