Remove a couple of signed/unsigned comparisons.

This commit is contained in:
rocky
2005-11-10 11:22:55 +00:00
parent 75960f732e
commit 1e9751d827
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
/* /*
$Id: iso2.cpp,v 1.5 2005/11/07 07:44:00 rocky Exp $ $Id: iso2.cpp,v 1.6 2005/11/10 11:22:55 rocky Exp $
Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com> Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
@@ -81,7 +81,7 @@ main(int argc, const char *argv[])
{ {
iso9660_stat_t *p_statbuf; iso9660_stat_t *p_statbuf;
FILE *p_outfd; FILE *p_outfd;
int i; unsigned int i;
char const *psz_image; char const *psz_image;
char const *psz_fname; char const *psz_fname;
char translated_name[256]; char translated_name[256];

View File

@@ -1,5 +1,5 @@
/* /*
$Id: iso3.cpp,v 1.1 2005/02/19 11:42:18 rocky Exp $ $Id: iso3.cpp,v 1.2 2005/11/10 11:22:55 rocky Exp $
Copyright (C) 2004 Rocky Bernstein <rocky@panix.com> Copyright (C) 2004 Rocky Bernstein <rocky@panix.com>
@@ -67,7 +67,7 @@ main(int argc, const char *argv[])
{ {
iso9660_stat_t *p_statbuf; iso9660_stat_t *p_statbuf;
FILE *p_outfd; FILE *p_outfd;
int i; unsigned int i;
char const *psz_fname; char const *psz_fname;
iso9660_t *p_iso; iso9660_t *p_iso;