summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/utils/utils.c
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2009-06-25 13:05:10 +0000
committerTaco Hoekwater <taco@elvenkind.com>2009-06-25 13:05:10 +0000
commitebda2ab6e51fa44aa30c74edbc9e38c7c57622b0 (patch)
tree5af7d176515ac970be7154a6948e47fb21c6c7b8 /Build/source/texk/web2c/luatexdir/utils/utils.c
parent2f80ae7fd3aeb0f81adc741f82109813846d82a4 (diff)
source files for luatex 0.40.6
git-svn-id: svn://tug.org/texlive/trunk@13958 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/utils/utils.c')
-rw-r--r--Build/source/texk/web2c/luatexdir/utils/utils.c6
1 files changed, 3 insertions, 3 deletions
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++);
}