aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-10-01 12:32:46 +0000
committerJörg Mayer <jmayer@loplof.de>2004-10-01 12:32:46 +0000
commitb972fd465850489ab72b15ce549a93e8e2737cec (patch)
treebaa9a0523fb940e142e0ce2003f40eeb65081926 /util.h
parent54e0e363a95a6449f5e1c7d336a8f360d92777a3 (diff)
Get rid of warnings about shadowed variables (code was ok)
svn path=/trunk/; revision=12172
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 1863474b87..eadf6b9e68 100644
--- a/util.h
+++ b/util.h
@@ -35,7 +35,7 @@ int create_tempfile(char *, int, const char *);
* 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, char **, int);
/* Compute the difference between two seconds/microseconds time stamps. */
void compute_timestamp_diff(gint *, gint *, guint32, guint32, guint32, guint32);