From 66b05fab71b670b7a2596f690b77e208ade31cc4 Mon Sep 17 00:00:00 2001 From: Robin Getz Date: Wed, 13 May 2020 16:19:47 -0400 Subject: [PATCH] iio.h: fix typo in doc parameter section for one function Fix doc error pointed out by Doxygen warning/error checking now in CI. (which actually means the previous commits worked :) From CI log: 2678/docker_build_dir/iio.h:269: warning: argument 'ctx' of command @param is not found in the argument list of iio_scan_block_destroy(struct iio_scan_block *blk) 2679/docker_build_dir/iio.h:275: warning: The following parameters of iio_scan_block_destroy(struct iio_scan_block *blk) are not documented: Signed-off-by: Robin Getz --- iio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iio.h b/iio.h index 0640bfb71..2c8113d7d 100644 --- a/iio.h +++ b/iio.h @@ -267,7 +267,7 @@ __api struct iio_scan_block * iio_create_scan_block( /** @brief Destroy the given scan block - * @param ctx A pointer to an iio_scan_block structure + * @param blk A pointer to an iio_scan_block structure * * NOTE: After that function, the iio_scan_block pointer shall be invalid. *