diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:29:36 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:29:36 +0000 |
commit | 27c51195f514a3418beceea0037ee121987c8e6a (patch) | |
tree | ddada89b59544f5f963aee7db5152504de324f27 /desktop/source/pagein | |
parent | 88e27fcffdafd55ed868dae0f20acd07384f7582 (diff) |
INTEGRATION: CWS pj65 (1.3.272); FILE MERGED
2006/10/31 13:34:22 pjanik 1.3.272.1: #i71027#: prevent warnings on Mac OS X with gcc 4.0.1.
Diffstat (limited to 'desktop/source/pagein')
-rw-r--r-- | desktop/source/pagein/pagein.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/desktop/source/pagein/pagein.c b/desktop/source/pagein/pagein.c index 0cebf8c5dcdc..2b89dc06425f 100644 --- a/desktop/source/pagein/pagein.c +++ b/desktop/source/pagein/pagein.c @@ -4,9 +4,9 @@ * * $RCSfile: pagein.c,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 17:44:27 $ + * last change: $Author: vg $ $Date: 2006-11-21 17:29:36 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -129,7 +129,7 @@ int main (int argc, char **argv) } if (v >= 2) - fprintf (stderr, "pagein(\"%s\") = %d bytes\n", path, k); + fprintf (stderr, "pagein(\"%s\") = %d bytes\n", path, (int) k); nfiles += 1; } fclose (fp); @@ -146,12 +146,12 @@ int main (int argc, char **argv) } if (v >= 2) - fprintf (stderr, "pagein(\"%s\") = %d bytes\n", argv[i], k); + fprintf (stderr, "pagein(\"%s\") = %d bytes\n", argv[i], (int) k); nfiles += 1; } } if (v >= 1) - fprintf (stderr, "Total: %d files (%d bytes)\n", nfiles, nbytes); + fprintf (stderr, "Total: %d files (%d bytes)\n", (int) nfiles, (int) nbytes); return (0); } |