From ee7d71f5f00feba864cca44b99f8f361cb34e0d4 Mon Sep 17 00:00:00 2001 From: Lars-Peter Clausen Date: Wed, 25 Mar 2020 16:26:23 +0100 Subject: [PATCH] iio_writedev: Fix copy&paste error in size parameter help The help text for iio_writedev was original copied from iio_readdev. There is a small copy&paste error for the size parameter description which reference a "capture buffer" while for iio_writedev it should be "transmit buffer". Signed-off-by: Lars-Peter Clausen --- tests/iio_writedev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/iio_writedev.c b/tests/iio_writedev.c index b2047dd0d..856a2f794 100644 --- a/tests/iio_writedev.c +++ b/tests/iio_writedev.c @@ -59,7 +59,7 @@ static const char *options_descriptions[] = { "Use the network backend with the provided hostname.", "Use the context with the provided URI.", "Use the specified trigger.", - "Size of the capture buffer. Default is 256.", + "Size of the transmit buffer. Default is 256.", "Number of samples to write, 0 = infinite. Default is 0.", "Buffer timeout in milliseconds. 0 = no timeout", "Scan for available contexts and if only one is available use it.",