summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2002-02-21 13:20:29 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2002-02-21 13:20:29 +0000
commite07dd68583da451ca777cf81da4f8349c595716e (patch)
treec6cc2a2f485531130d9d3ac92382ce5c267963fe /tools
parentff0232f8a839314b7a47111334de1e435f5ee926 (diff)
#65293#: cast
Diffstat (limited to 'tools')
-rw-r--r--tools/bootstrp/rscdep.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/bootstrp/rscdep.cxx b/tools/bootstrp/rscdep.cxx
index 9993db82ade0..9f30dc33e527 100644
--- a/tools/bootstrp/rscdep.cxx
+++ b/tools/bootstrp/rscdep.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: rscdep.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: hr $ $Date: 2002-02-07 16:34:45 $
+ * last change: $Author: hr $ $Date: 2002-02-21 14:20:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -350,7 +350,7 @@ simple_getopt(int argc, char *argv[], const char *optstring)
if ( arg[0] == '-' && arg[1] != '\0' ) {
char *popt;
int c = arg[1];
- if ( (popt = strchr(optstring, c)) == NULL ) {
+ if ( (popt = (char*)strchr(optstring, c)) == NULL ) {
optopt = c;
if ( opterr )
fprintf(stderr, "Unknown option character `\\x%x'.\n", optopt);