From a7271a78b93599afe0de9142f67cb0f6a62ca7e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Mon, 8 May 2006 14:15:20 +0000 Subject: [PATCH] Less "pointer targets in passing argument differ in signedness" warnings. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17516 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/otp/otp_parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/otp/otp_parse.c b/lib/otp/otp_parse.c index 738fb3182..9228fe843 100644 --- a/lib/otp/otp_parse.c +++ b/lib/otp/otp_parse.c @@ -107,11 +107,11 @@ parse_words(unsigned wn[], void *arg) { const unsigned char *w, *wend; - unsigned char *wcopy; + char *wcopy; int i; int tmp; - w = str; + w = (const unsigned char *)str; for (i = 0; i < 6; ++i) { while (isspace(*w)) ++w;