From: Fabian Keil Date: Thu, 28 Dec 2006 18:25:53 +0000 (+0000) Subject: Fixed gcc43 compiler warning. X-Git-Tag: v_3_0_7~420 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=5c245d40e598507a581c5614f004936b3f503a3d;hp=4119f0492859fae054d2bb62b933a996004b245a Fixed gcc43 compiler warning. --- diff --git a/encode.c b/encode.c index 189dfee0..d2dc6752 100644 --- a/encode.c +++ b/encode.c @@ -1,7 +1,7 @@ -const char encode_rcs[] = "$Id: encode.c,v 1.8 2002/03/26 22:29:54 swa Exp $"; +const char encode_rcs[] = "$Id: encode.c,v 1.10 2006/07/18 14:48:45 david__schmidt Exp $"; /********************************************************************* * - * File : $Source: /cvsroot/ijbswa/current/Attic/encode.c,v $ + * File : $Source: /cvsroot/ijbswa/current/encode.c,v $ * * Purpose : Functions to encode and decode URLs, and also to * encode cookies and HTML text. @@ -33,6 +33,10 @@ const char encode_rcs[] = "$Id: encode.c,v 1.8 2002/03/26 22:29:54 swa Exp $"; * * Revisions : * $Log: encode.c,v $ + * Revision 1.10 2006/07/18 14:48:45 david__schmidt + * Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch) + * with what was really the latest development (the v_3_0_branch branch) + * * Revision 1.8 2002/03/26 22:29:54 swa * we have a new homepage! * @@ -454,7 +458,7 @@ char *url_decode(const char * s) break; case '%': - if ((*q = xtoi(s + 1)) != '\0') + if ((*q = (char)xtoi(s + 1)) != '\0') { s += 3; q++;