Fix signedness warning.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16013 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-09-03 19:51:29 +00:00
parent ffeb35878f
commit 9a3ddecf98

View File

@@ -71,7 +71,7 @@ static char *
quote_string(const char *f, size_t len, size_t *rlen)
{
size_t i, j, tolen;
const unsigned char *from = f;
const unsigned char *from = (const unsigned char *)f;
unsigned char *to;
tolen = len * 3 + 1;