diff options
Diffstat (limited to 'Build/source/texk/dvipdfm-x/otl_conf.c')
-rw-r--r-- | Build/source/texk/dvipdfm-x/otl_conf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/dvipdfm-x/otl_conf.c b/Build/source/texk/dvipdfm-x/otl_conf.c index bafacc57a7c..c65c58dd393 100644 --- a/Build/source/texk/dvipdfm-x/otl_conf.c +++ b/Build/source/texk/dvipdfm-x/otl_conf.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. This program is free software; you can redistribute it and/or modify @@ -459,7 +459,7 @@ otl_read_conf (const char *conf_name) FILE *fp; char *filename, *wbuf, *p, *endptr; const char *pp; - long size, len; + int size, len; filename = NEW(strlen(conf_name)+strlen(".otl")+1, char); strcpy(filename, conf_name); @@ -543,7 +543,7 @@ otl_find_conf (const char *conf_name) if (options) { pdf_obj *optkeys, *opt, *key; - long i, num_opts; + int i, num_opts; optkeys = pdf_dict_keys(options); num_opts = pdf_array_length(optkeys); |