summaryrefslogtreecommitdiff
path: root/soltools/ldump
diff options
context:
space:
mode:
authorHans-Joachim Lankenau <hjs@openoffice.org>2002-06-20 11:40:46 +0000
committerHans-Joachim Lankenau <hjs@openoffice.org>2002-06-20 11:40:46 +0000
commit45ccc862547980b8acc086840920f3899df0959b (patch)
treed4d9b8e97887de7e3f15150f51b221606f47fb14 /soltools/ldump
parent80bbd0af79f5c5003f14a6eaab33a0ec15619a68 (diff)
dump errors to stderr; added *Error* keyword
Diffstat (limited to 'soltools/ldump')
-rw-r--r--soltools/ldump/ldump.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/soltools/ldump/ldump.cxx b/soltools/ldump/ldump.cxx
index d2346bcdcb34..b06c508abe8e 100644
--- a/soltools/ldump/ldump.cxx
+++ b/soltools/ldump/ldump.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ldump.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hjs $ $Date: 2002-06-19 17:03:32 $
+ * last change: $Author: hjs $ $Date: 2002-06-20 12:40:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -618,7 +618,7 @@ bool LibDump::DumpError( unsigned long n )
case 610: p = "Overflow in base database table\n"; break;
default: p = "Unspecified error";
}
- fprintf( stdout, "%s\n", p );
+ fprintf( stderr, "Error\n\n%s\n", p );
exit (1);
return false;
}