diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2006-10-16 22:18:24 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2006-10-16 22:18:24 +0000 |
commit | fd821f5c182e0c6f2da2f299b7d1341affd0914f (patch) | |
tree | 4d6765e0e45102c4a69bf114f2e6ebe38297ea8d /src/xine-engine/xine.c | |
parent | eebe97a3fe85f26ec95ad237a327ed02a2a2bfb2 (diff) | |
download | xine-lib-fd821f5c182e0c6f2da2f299b7d1341affd0914f.tar.gz xine-lib-fd821f5c182e0c6f2da2f299b7d1341affd0914f.tar.bz2 |
Fixed several warnings (but warnings due to APIs not solved).
CVS patchset: 8344
CVS date: 2006/10/16 22:18:24
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 5e07836d1..78476a768 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.c,v 1.334 2006/09/25 23:11:19 dgp85 Exp $ + * $Id: xine.c,v 1.335 2006/10/16 22:18:24 valtri Exp $ */ /* @@ -644,7 +644,7 @@ static void mrl_unescape(char *mrl) { for (i = 0; i < len; i++) { if ((mrl[i]=='%') && (i<(len-2))) { - int c; + unsigned int c; if (sscanf(&mrl[i + 1], "%02x", &c) == 1) { mrl[i]= (char)c; @@ -1400,7 +1400,6 @@ void xine_exit (xine_t *this) { xine_t *xine_new (void) { xine_t *this; - int i; #ifdef WIN32 WSADATA Data; |