summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm-x/mfileio.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2015-08-25 08:27:18 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2015-08-25 08:27:18 +0000
commit9e79a59a9cd97513d54c3e6190d2391947daa14b (patch)
treed301db97dfeb963bb8bdb0e02139d332057d07e7 /Build/source/texk/dvipdfm-x/mfileio.c
parent4dc44f751f9c40c83f347420624e498aa936d0ab (diff)
texk/dvipdfm-x: Replace '(unsigned) long' by '(unsigned) int' or
'(u)int32_t' except when needed with for ftell() and fseek() git-svn-id: svn://tug.org/texlive/trunk@38200 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfm-x/mfileio.c')
-rw-r--r--Build/source/texk/dvipdfm-x/mfileio.c33
1 files changed, 18 insertions, 15 deletions
diff --git a/Build/source/texk/dvipdfm-x/mfileio.c b/Build/source/texk/dvipdfm-x/mfileio.c
index 8d17ec526e2..c21539eba22 100644
--- a/Build/source/texk/dvipdfm-x/mfileio.c
+++ b/Build/source/texk/dvipdfm-x/mfileio.c
@@ -1,6 +1,6 @@
/* This is dvipdfmx, an eXtended version of dvipdfm by Mark A. Wicks.
- Copyright (C) 2002-2014 by Jin-Hwan Cho and Shunsaku Hirata,
+ Copyright (C) 2002-2015 by Jin-Hwan Cho and Shunsaku Hirata,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by Mark A. Wicks <mwicks@kettering.edu>
@@ -32,7 +32,7 @@
#ifdef IODEBUG
static FILE *iodebug_file = NULL;
-static long event = 0;
+static int event = 0;
static void io_debug_init(void)
{
if (!iodebug_file) {
@@ -56,7 +56,7 @@ FILE *mfopen(const char *name, const char *mode, const char *function, int line)
tmp = fopen (name, mode);
#endif
event += 1;
- fprintf(iodebug_file, "%p %07ld [fopen] %s:%d\n", tmp, event,
+ fprintf(iodebug_file, "%p %07d [fopen] %s:%d\n", tmp, event,
function, line);
return tmp;
}
@@ -64,7 +64,7 @@ int mfclose(FILE *file, const char *function, int line)
{
io_debug_init();
event += 1;
- fprintf(iodebug_file, "%p %07ld [fclose] %s:%d\n", file, event,
+ fprintf(iodebug_file, "%p %07d [fclose] %s:%d\n", file, event,
function, line);
return fclose(file);
}
@@ -75,16 +75,16 @@ static void os_error(void)
ERROR ("io: An OS command failed that should not have.\n");
}
-void seek_absolute (FILE *file, long pos)
+void seek_absolute (FILE *file, int32_t pos)
{
- if (fseek(file, pos, SEEK_SET)) {
+ if (fseek(file, (long)pos, SEEK_SET)) {
os_error();
}
}
-void seek_relative (FILE *file, long pos)
+void seek_relative (FILE *file, int32_t pos)
{
- if (fseek(file, pos, SEEK_CUR)) {
+ if (fseek(file, (long)pos, SEEK_CUR)) {
os_error();
}
}
@@ -97,23 +97,26 @@ void seek_end (FILE *file)
}
}
-long tell_position (FILE *file)
+int32_t tell_position (FILE *file)
{
- long size;
- if ((size = ftell (file)) < 0) {
+ long size = ftell (file);
+ if (size < 0)
os_error();
- }
+#if LONG_MAX > 0x7fffffff
+ if (size > 0x7fffffff)
+ ERROR ("ftell: file size %ld exceeds 0x7fffffff.\n", size);
+#endif
return size;
}
-long file_size (FILE *file)
+int32_t file_size (FILE *file)
{
- long size;
+ int32_t size;
/* Seek to end */
seek_end (file);
size = tell_position (file);
rewind (file);
- return (size);
+ return size;
}
off_t xfile_size (FILE *file, const char *name)