summaryrefslogtreecommitdiffstats
path: root/soltools/javadep/javadep.c
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-04-23 09:20:56 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-04-23 09:20:56 +0000
commitc95e45663aa9421b3f1900680f6388e36462c35b (patch)
tree4663b108113ba4998aa480e4e546a937e259d512 /soltools/javadep/javadep.c
parentreplace getopt() with simple_getopt() (diff)
downloadcore-c95e45663aa9421b3f1900680f6388e36462c35b.tar.gz
core-c95e45663aa9421b3f1900680f6388e36462c35b.zip
fixed fprintf() call
Diffstat (limited to 'soltools/javadep/javadep.c')
-rw-r--r--soltools/javadep/javadep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/soltools/javadep/javadep.c b/soltools/javadep/javadep.c
index b59df634b8c5..578453b478e0 100644
--- a/soltools/javadep/javadep.c
+++ b/soltools/javadep/javadep.c
@@ -2,9 +2,9 @@
*
* $RCSfile: javadep.c,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2001-04-23 08:48:07 $
+ * last change: $Author: hr $ $Date: 2001-04-23 10:20:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -804,7 +804,7 @@ simple_getopt(int nargc, char *pargv[], const char *poptstring)
if ( (popt = strchr(poptstring, c)) == NULL ) {
optopt = c;
if ( opterr )
- fprintf("Unknown option character `\\x%x'.\n", optopt);
+ fprintf(stderr, "Unknown option character `\\x%x'.\n", optopt);
return '?';
}
if ( *(++popt) == ':') {