summaryrefslogtreecommitdiff
path: root/crashrep/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2008-04-22 14:13:45 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2008-04-22 14:13:45 +0000
commitcbc6bbd8a3c245ab8cdb6e4569130fbeef48557c (patch)
tree734031dfac99818d7df29b368c60568a78f30cad /crashrep/source
parent9c522154fa1b33f382bd812c660c6bb64c3e10ae (diff)
INTEGRATION: CWS hr50 (1.26.50); FILE MERGED
2008/04/10 13:45:22 hr 1.26.50.1: #i86574#: fix sprintf format warnings (gcc-4.2.3)
Diffstat (limited to 'crashrep/source')
-rwxr-xr-xcrashrep/source/unx/main.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/crashrep/source/unx/main.cxx b/crashrep/source/unx/main.cxx
index 944b770e2e4b..92347f2456ac 100755
--- a/crashrep/source/unx/main.cxx
+++ b/crashrep/source/unx/main.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: main.cxx,v $
- * $Revision: 1.27 $
+ * $Revision: 1.28 $
*
* This file is part of OpenOffice.org.
*
@@ -355,7 +355,7 @@ bool SendHTTPRequest(
"SOAPAction: \"\"\r\n\r\n",
pszServer,
uPort,
- length
+ (int)length
);
else
sprintf( buffer,
@@ -363,7 +363,7 @@ bool SendHTTPRequest(
"Content-Type: text/xml; charset=\"utf-8\"\r\n"
"Content-Length: %d\r\n"
"SOAPAction: \"\"\r\n\r\n",
- length
+ (int)length
);
if ( g_bDebugMode )