summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-06-12 14:28:17 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-06-12 14:28:55 +0100
commit18c786cbcd45ee314bed6303c62e23ecf4022a8b (patch)
tree513e81943090136da21ac3aa5ec945ca1b5b20b3 /smoketest
parent4348dfbd4ab73c151fbd45c7066886530498ec0b (diff)
cast loses precision
Change-Id: Ic688f08cada4ae70ea1dfb1e29e249a166456452
Diffstat (limited to 'smoketest')
-rw-r--r--smoketest/libtest.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/smoketest/libtest.cxx b/smoketest/libtest.cxx
index 2316b8c24184..51c184b11af6 100644
--- a/smoketest/libtest.cxx
+++ b/smoketest/libtest.cxx
@@ -13,6 +13,7 @@
#include <assert.h>
#include <math.h>
#include <sys/time.h>
+#include <sal/types.h>
#include <LibreOfficeKit/LibreOfficeKit.hxx>
using namespace ::lok;
@@ -77,9 +78,9 @@ int main (int argc, char **argv)
if (!LIBREOFFICEKIT_DOCUMENT_HAS(pDocument->get(), saveAsWithOptions))
{
- fprintf( stderr, "using obsolete LibreOffice %d + %d vs. %d\n",
- (int)((unsigned char *)&((LibreOfficeKitDocument *) 0)->saveAsWithOptions),
- (int)sizeof ((LibreOfficeKitDocument *) 0)->saveAsWithOptions,
+ fprintf( stderr, "using obsolete LibreOffice %" SAL_PRI_SIZET "d + %" SAL_PRI_SIZET "d vs. %" SAL_PRI_SIZET "d\n",
+ (size_t)((unsigned char *)&((LibreOfficeKitDocument *) 0)->saveAsWithOptions),
+ sizeof ((LibreOfficeKitDocument *) 0)->saveAsWithOptions,
pDocument->get()->nSize );
return -1;
}