diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-04-17 14:52:32 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-04-17 14:52:32 +0000 |
commit | 73a42b360c683f4b9c3b25014fd705ee44fe75ba (patch) | |
tree | 3fe0f2a49c8864e5886209ac01261fb7e0c4293b /editcap.c | |
parent | fa49e7601c5ac91a64fab3f8cf545c6069af2c3b (diff) | |
download | wireshark-73a42b360c683f4b9c3b25014fd705ee44fe75ba.tar.gz wireshark-73a42b360c683f4b9c3b25014fd705ee44fe75ba.tar.bz2 wireshark-73a42b360c683f4b9c3b25014fd705ee44fe75ba.zip |
Remove optopt and opterr, two unused variables.
svn path=/trunk/; revision=1877
Diffstat (limited to 'editcap.c')
-rw-r--r-- | editcap.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* Edit capture files. We can delete records, or simply convert from one * format to another format. * - * $Id: editcap.c,v 1.7 2000/04/12 21:51:27 gram Exp $ + * $Id: editcap.c,v 1.8 2000/04/17 14:52:32 gram Exp $ * * Originally written by Richard Sharpe. * Improved by Guy Harris. @@ -192,7 +192,7 @@ int main(int argc, char *argv[]) int i, err; callback_arg args; extern char *optarg; - extern int optind, opterr, optopt; + extern int optind; char opt; /* Process the options first */ |