aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2008-06-23 20:32:50 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2008-06-23 20:32:50 +0000
commit3afe44acbfd77c69834bd183ac8ec6dd471056be (patch)
tree3c0620a0926632afd7e74b09e560b50935d0db09 /util.h
parentcccc4a85597ab3907d7f24371869a57c386533fa (diff)
Rename a variable to avoid collisions with a global variable, as noted
by John Smith. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25548 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'util.h')
-rw-r--r--util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.h b/util.h
index 4a9d811126..2849b05cd6 100644
--- a/util.h
+++ b/util.h
@@ -32,7 +32,7 @@ extern "C" {
/* Collect command-line arguments as a string consisting of the arguments,
* separated by spaces.
*/
-char *get_args_as_string(int argc, char **argv, int optind);
+char *get_args_as_string(int argc, char **argv, int optindex);
/* Compute the difference between two seconds/microseconds time stamps.
* Beware: we're using nanosecond resolution now and function is currently unused