aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2019-01-06 20:50:43 +0100
committerMichael Mann <mmann78@netscape.net>2019-01-08 01:52:23 +0000
commit4a71660193e945dd2ed1f016c1b80b0f066469c7 (patch)
tree1166d82d0d1b092c7f2faa28ae0f10b5ee16010f
parent3aad1ef236e6c610f25bd8cfc13c2bb1830f207c (diff)
ws_pipe(.h): fix issue on doxygen documentation
parameter 'argv' not found in the function declaration [-Wdocumentation] Change-Id: I68262a23e3a6f4b50d8b5e666b92f055feeaf74f Reviewed-on: https://code.wireshark.org/review/31424 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--wsutil/ws_pipe.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wsutil/ws_pipe.h b/wsutil/ws_pipe.h
index 085e9aae05..8213e44086 100644
--- a/wsutil/ws_pipe.h
+++ b/wsutil/ws_pipe.h
@@ -45,7 +45,7 @@ typedef struct _ws_pipe_t {
* @param [IN] working_directory Initial working directory.
* @param [IN] command Command to run.
* @param [IN] argc Number of arguments for the command, not including the command itself.
- * @param [IN] argv Arguments for the command, not including the command itself.
+ * @param [IN] args Arguments for the command, not including the command itself.
* @param [OUT] command_output If not NULL, receives a copy of the command output. Must be g_freed.
* @return TRUE on success or FALSE on failure.
*/