summaryrefslogtreecommitdiff
path: root/ui/commandline.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-06-27 19:54:42 -0700
committerGuy Harris <guy@alum.mit.edu>2016-06-28 02:55:38 +0000
commit3ebac2babbd9af1593b86084214051c4c2da8eb2 (patch)
tree553bb90d7cfdbc0d446668fde209f4287ad3882e /ui/commandline.h
parentac4ad2bd44f2b8f6981581c683d15645bf2e70cc (diff)
downloadwireshark-3ebac2babbd9af1593b86084214051c4c2da8eb2.tar.gz
Have commandline_other_options() directly fill in the global structure.
Other code looks at the global structure, so there won't be other structures; just fill in the global structure directly. Change-Id: I4dc87b79168c5a7c9ab1f085aa2d78cc6d2c9019 Reviewed-on: https://code.wireshark.org/review/16184 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/commandline.h')
-rw-r--r--ui/commandline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/commandline.h b/ui/commandline.h
index 161c57a68a..a58ea51e70 100644
--- a/ui/commandline.h
+++ b/ui/commandline.h
@@ -53,7 +53,7 @@ typedef struct commandline_param_info
} commandline_param_info_t;
-extern void commandline_other_options(int argc, char *argv[], commandline_param_info_t* param_info, gboolean opt_reset);
+extern void commandline_other_options(int argc, char *argv[], gboolean opt_reset);
static commandline_param_info_t global_commandline_info;