diff options
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/utils')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/utils/avlstuff.c | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/luatexdir/utils/utils.c | 6 | ||||
-rw-r--r-- | Build/source/texk/web2c/luatexdir/utils/writezip.c | 2 |
3 files changed, 6 insertions, 7 deletions
diff --git a/Build/source/texk/web2c/luatexdir/utils/avlstuff.c b/Build/source/texk/web2c/luatexdir/utils/avlstuff.c index 134f926ec75..e11d2edfa5f 100644 --- a/Build/source/texk/web2c/luatexdir/utils/avlstuff.c +++ b/Build/source/texk/web2c/luatexdir/utils/avlstuff.c @@ -19,13 +19,12 @@ with LuaTeX; if not, see <http://www.gnu.org/licenses/>. */ #include "ptexlib.h" -#include <stdarg.h> #include <kpathsea/c-proto.h> #include "avl.h" static const char __svn_version[] = - "$Id: avlstuff.c 2448 2009-06-08 07:43:50Z taco $ " - "$URL: http://foundry.supelec.fr/svn/luatex/tags/beta-0.40.5/source/texk/web2c/luatexdir/utils/avlstuff.c $"; + "$Id: avlstuff.c 2599 2009-06-25 10:35:26Z taco $ " + "$URL: http://foundry.supelec.fr/svn/luatex/tags/beta-0.40.6/source/texk/web2c/luatexdir/utils/avlstuff.c $"; static struct avl_table **PdfObjTree = NULL; diff --git a/Build/source/texk/web2c/luatexdir/utils/utils.c b/Build/source/texk/web2c/luatexdir/utils/utils.c index e59c0ae83e3..0ca7441c699 100644 --- a/Build/source/texk/web2c/luatexdir/utils/utils.c +++ b/Build/source/texk/web2c/luatexdir/utils/utils.c @@ -50,8 +50,8 @@ #endif static const char __svn_version[] = - "$Id: utils.c 2470 2009-06-10 10:12:48Z taco $ " - "$URL: http://foundry.supelec.fr/svn/luatex/tags/beta-0.40.5/source/texk/web2c/luatexdir/utils/utils.c $"; + "$Id: utils.c 2492 2009-06-14 13:14:50Z taco $ " + "$URL: http://foundry.supelec.fr/svn/luatex/tags/beta-0.40.6/source/texk/web2c/luatexdir/utils/utils.c $"; #define check_nprintf(size_get, size_want) \ if ((unsigned)(size_get) >= (unsigned)(size_want)) \ @@ -1762,7 +1762,7 @@ scaled divide_scaled_n(double sd, double md, double n) void tprint(char *s) { - unsigned char *ss = s; + unsigned char *ss = (unsigned char*) s; while (*ss) print_char(*ss++); } diff --git a/Build/source/texk/web2c/luatexdir/utils/writezip.c b/Build/source/texk/web2c/luatexdir/utils/writezip.c index 81b0b9c7949..312623093ef 100644 --- a/Build/source/texk/web2c/luatexdir/utils/writezip.c +++ b/Build/source/texk/web2c/luatexdir/utils/writezip.c @@ -23,7 +23,7 @@ #include <assert.h> static const char __svn_version[] = - "$Id: writezip.c 2271 2009-04-12 23:42:21Z oneiros $ $URL: http://foundry.supelec.fr/svn/luatex/tags/beta-0.40.5/source/texk/web2c/luatexdir/utils/writezip.c $"; + "$Id: writezip.c 2271 2009-04-12 23:42:21Z oneiros $ $URL: http://foundry.supelec.fr/svn/luatex/tags/beta-0.40.6/source/texk/web2c/luatexdir/utils/writezip.c $"; #define ZIP_BUF_SIZE 32768 |