aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2019-01-04 09:47:45 +0100
committerAnders Broman <a.broman58@gmail.com>2019-01-04 11:30:21 +0000
commitbab774d2601929754d268fa4e2a1cf2bd7f56b2a (patch)
tree2493953acc8b2716cc66c6b566f6b87527619867
parente0e1f3ff31212fb1dcc05b909343711a1bdf2611 (diff)
ws_pipe: use same var name.
Found by clang-tidy. Change-Id: I0d324faf494f6b68275d6ff600304f716529778b Reviewed-on: https://code.wireshark.org/review/31358 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
-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 0a3cad3c17..085e9aae05 100644
--- a/wsutil/ws_pipe.h
+++ b/wsutil/ws_pipe.h
@@ -49,7 +49,7 @@ typedef struct _ws_pipe_t {
* @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.
*/
-WS_DLL_PUBLIC gboolean ws_pipe_spawn_sync(const gchar * working_directory, const gchar * command, gint argc, gchar ** argv, gchar ** command_output);
+WS_DLL_PUBLIC gboolean ws_pipe_spawn_sync(const gchar * working_directory, const gchar * command, gint argc, gchar ** args, gchar ** command_output);
/**
* @brief Initialize a ws_pipe_t struct. Sets .pid to WS_INVALID_PID and all other members to 0 or NULL.