Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2001-09-19 20:08:33 +0400
committerCorinna Vinschen <corinna@vinschen.de>2001-09-19 20:08:33 +0400
commit09376842d4d7240c8cd7a63fa7858b620469cd22 (patch)
tree93f361f454ad28af2e9c22819da1ca86eb1edefa /winsup/cygwin/lib
parent596f3269b00bc497b2fd82d9ec4bc748fe7b6fab (diff)
* lib/getopt.c (getopt_long): Avoid compiler warning.
Diffstat (limited to 'winsup/cygwin/lib')
-rw-r--r--winsup/cygwin/lib/getopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/lib/getopt.c b/winsup/cygwin/lib/getopt.c
index ba13678b8..11f065fc2 100644
--- a/winsup/cygwin/lib/getopt.c
+++ b/winsup/cygwin/lib/getopt.c
@@ -381,7 +381,7 @@ getopt_long(int nargc, char * const *nargv, const char *options,
size_t current_argv_len;
int i, match;
- current_argv = place;
+ current_argv = (char *) place;
match = -1;
optind++;